diff options
-rw-r--r-- | nvim/init.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/init.vim b/nvim/init.vim index 1b9ee72..6376698 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -29,7 +29,7 @@ set backup " Always keep backup files in case of crashes set undofile " Save undo's after file closes set shortmess+=I " Don't show the nag-screen set showcmd " Show partial command in the last line of the screen -set scrolloff=1 " Minimum number of screen lines under/above the cursor +set scrolloff=4 " Minimum number of screen lines under/above the cursor set linebreak " Don’t wrap lines in the middle of a word set spelllang=en_us set backupdir=$XDG_DATA_HOME/nvim/backup " Don't write backups in current dir |