Changed vimrc to add wrap settings based on

http://vim.wikia.com/wiki/Word_wrap_without_line_breaks
This commit is contained in:
Alex Kelly 2014-11-14 13:23:02 -05:00
parent ba9177663d
commit 7a13286c2a

View file

@ -14,6 +14,12 @@ set rtp+=~/.vim/bundle/vundle/
set pastetoggle=<F10> set pastetoggle=<F10>
call vundle#rc() call vundle#rc()
"We are going to try the wrapping functions. We'll see how that works
"Python has nowrap set, so this generally shouldn't suck
set wrap
set linebreak
set nolist
" let Vundle manage Vundle " let Vundle manage Vundle
" required! " required!
Plugin 'gmarik/vundle' Plugin 'gmarik/vundle'