Skip to content

Instantly share code, notes, and snippets.

@kfiresmith
Created April 30, 2025 15:18
Show Gist options
  • Save kfiresmith/5e3cb84ef13042e66ed11f6524e51abc to your computer and use it in GitHub Desktop.
Save kfiresmith/5e3cb84ef13042e66ed11f6524e51abc to your computer and use it in GitHub Desktop.
vimrc
" tabstop: Width of tab character
" softtabstop: Fine tunes the amount of white space to be added
" shiftwidth Determines the amount of whitespace to add in normal mode
" expandtab: When on uses space instead of tabs
set tabstop =2
set softtabstop =2
set shiftwidth =2
set expandtab
set autoindent
set smartindent
" set number
set ruler
set visualbell
set encoding=utf-8
"set wrap
"set textwidth=100
set laststatus=2
set showmode
set showcmd
set smartcase
set showmatch
set t_Co=256
set background=dark
let g:solarized_termcolors=256
let g:solarized_termtrans=1
hi Comment ctermfg=DarkYellow
hi Cursor guifg=#77216F
hi Cursor guibg=#E95420
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment