dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

text.vim (249B) [raw]


      1 " soft wrap at word breaks
      2 setlocal linebreak
      3 setlocal breakindent
      4 
      5 " Spellcheck
      6 setlocal spell spelllang=en_us
      7 
      8 " Break at 65
      9 setlocal textwidth=65
     10 
     11 " TAB is TAB
     12 setlocal softtabstop=8
     13 setlocal shiftwidth=8
     14 setlocal noexpandtab
     15 setlocal nosmarttab