Changed vimrc to add wrap settings based on
http://vim.wikia.com/wiki/Word_wrap_without_line_breaks
This commit is contained in:
parent
ba9177663d
commit
7a13286c2a
1 changed files with 6 additions and 0 deletions
|
@ -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'
|
||||||
|
|
Loading…
Reference in a new issue