···2525set spellfile=~/.vimspell.add " my goodwords
2626set tabstop=4 " default tabs at 4 spaces
2727set viminfo= " annoying!
2828+set wildmode=longest,list,full " better filename tab completion
28292930set t_Co=256 " use all 256 colors
3031syntax on " enable syntax highlighting
···181182" i hold shift a lot, make :W work like :w and :Q like :q
182183cabbr W w
183184cabbr Q q
185185+186186+" disable annoying behavior where starting an auto-indented line with a hash
187187+" makes it unindent and refuse to >>
188188+:inoremap # X#
184189185190" :w !sudo tee %
186191