]> git.phdru.name Git - dotfiles.git/commitdiff
.vimrc: source $VIMRUNTIME/defaults.vim and reset &scrolloff
authorOleg Broytman <phd@phdru.name>
Mon, 1 Oct 2018 13:08:28 +0000 (16:08 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 1 Oct 2018 13:17:25 +0000 (16:17 +0300)
.vimrc

diff --git a/.vimrc b/.vimrc
index 147fb38d400f64de2251c0ee30dec65804ce86ae..6f6a46296ce8f56bbaa0dfaf72c4db902bb611f2 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -22,6 +22,10 @@ if exists("b:wrap") " Only do this on the second and subsequent :source's
       set nomodified
    endif
    unlet fenc ftype mod
+
+elseif filereadable($VIMRUNTIME . "/defaults.vim")
+   unlet! skip_defaults_vim
+   source $VIMRUNTIME/defaults.vim
 endif
 
 " No, it is not VI, it is VIM! It is important to set this first, because this
@@ -47,6 +51,7 @@ set list          " listchars only works with 'list'
 " Show tabs, non-breaking/trailing spaces, long lines
 set listchars=tab:>_,nbsp:_,trail:_,extends:+,precedes:+
 " Another usefull additions: eol:$,space:_
+set scrolloff=0 " number of screen lines to show around the cursor
 set wrap          " Visually wrap long lines
 
 " With 'set wrap' wrap long lines at a character in 'breakat'