diff options
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -62,8 +62,10 @@ set comments= set confirm " Only turn on 'cursorline' if my colorscheme loaded -if exists('g:colors_name') && g:colors_name ==# 'sahara' - set cursorline +if exists('+cursorline') + if exists('g:colors_name') && g:colors_name ==# 'sahara' + set cursorline + endif endif " Try to keep swapfiles in one system-appropriate dir @@ -113,11 +115,11 @@ set lazyredraw set linebreak " Define extra 'list' display characters -set listchars^=extends:> " Unwrapped text to screen right -set listchars^=precedes:< " Unwrapped text to screen left -set listchars^=tab:>- " Tab characters, preserve width -set listchars^=trail:_ " Trailing spaces -silent! set listchars^=nbsp:+ " Non-breaking spaces +set listchars+=extends:> " Unwrapped text to screen right +set listchars+=precedes:< " Unwrapped text to screen left +set listchars+=tab:>- " Tab characters, preserve width +set listchars+=trail:_ " Trailing spaces +silent! set listchars+=nbsp:+ " Non-breaking spaces " Don't allow setting options via buffer content set nomodeline @@ -127,7 +129,7 @@ set nrformats-=octal " Options for file search with gf/:find set path-=/usr/include " Let the C/C++ filetypes set that -set path^=** " Search current directory's whole tree +set path+=** " Search current directory's whole tree " Don't show startup splash screen (I donated) set shortmess+=I |