aboutsummaryrefslogtreecommitdiffstats
path: root/_vim/vimrc
diff options
context:
space:
mode:
Diffstat (limited to '_vim/vimrc')
-rw-r--r--_vim/vimrc10
1 files changed, 10 insertions, 0 deletions
diff --git a/_vim/vimrc b/_vim/vimrc
index 0ad9066..92cbb96 100644
--- a/_vim/vimrc
+++ b/_vim/vimrc
@@ -7,6 +7,8 @@
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => General
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+set nocompatible
+
" Sets how many lines of history VIM has to remember
set history=500
@@ -338,3 +340,11 @@ function! VisualSelection(direction, extra_filter) range
let @/ = l:pattern
let @" = l:saved_reg
endfunction
+
+
+"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" => Local configurations
+"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+if filereadable("~/.vimrc.local")
+ source ~/.vimrc.local
+endif