diff options
-rw-r--r-- | .vimrc | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -61,7 +61,7 @@ filetype plugin on filetype indent on " Display tabs and trailing spaces visually -set list listchars=tab:\ \ ,trail:· +set list listchars=tab:>-,trail:· set nowrap "Don't wrap lines set linebreak "Wrap lines at convenient points @@ -89,6 +89,11 @@ set wildignore+=log/** set wildignore+=tmp/** set wildignore+=*.png,*.jpg,*.gif +" ================ Path -----======================== +if isdirectory('/usr/include/') + set path+=/usr/include/ +endif + " ================ Scrolling ======================== set scrolloff=8 "Start scrolling when we're 8 lines away from margins @@ -120,7 +125,6 @@ so ~/.vim/addons.vim " addons so ~/.vim/addons-settings.vim " addon settings so ~/.vim/custom-settings.vim " custom settings so ~/.vim/custom-functions.vim " custom functions -so ~/.scvimrc " colors colorscheme pablo |