Commit 5e73c0da authored by Taddeüs Kroes's avatar Taddeüs Kroes

Added supoprt for ~/.vimrc_local file

parent abe3af5b
...@@ -54,7 +54,7 @@ set wildignore=*.swp,*.bak,*.pyc,*.class,*.o,*.bc ...@@ -54,7 +54,7 @@ set wildignore=*.swp,*.bak,*.pyc,*.class,*.o,*.bc
" File explorer " File explorer
let g:netrw_liststyle=3 " Use tree-mode as default view let g:netrw_liststyle=3 " Use tree-mode as default view
let g:netrw_preview=1 " Preview window shown in a vertically split let g:netrw_preview=1 " Preview window shown in a vsplit
" --------- " ---------
" Searching " Searching
...@@ -135,3 +135,11 @@ autocmd BufNewFile,BufRead *.less set filetype=less ...@@ -135,3 +135,11 @@ autocmd BufNewFile,BufRead *.less set filetype=less
" Highlight and underline badly spelled words when spellcheck is on " Highlight and underline badly spelled words when spellcheck is on
highlight SpellBad guisp=#fcaf3e cterm=underline highlight SpellBad guisp=#fcaf3e cterm=underline
" -----------------------
" Additional local config
" -----------------------
if filereadable($HOME . '/.vimrc_local')
source ~/.vimrc_local
endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment