From dfea82a38a3c8cc78cb8a3c5c90c487e1fe62a66 Mon Sep 17 00:00:00 2001 From: "Harish.K" Date: Fri, 16 Jun 2017 00:31:31 +0530 Subject: [PATCH] Scrol performance inmproove --- home/.config/nvim/init.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/.config/nvim/init.vim b/home/.config/nvim/init.vim index 8b4add3..509c7d8 100644 --- a/home/.config/nvim/init.vim +++ b/home/.config/nvim/init.vim @@ -93,8 +93,8 @@ set smartcase " Case sensitive when uc present set wildmenu " Show list instead of just completing set wildmode=list:longest,full " Command completion, list matches, then longest common part, then all. set whichwrap=b,s,h,l,<,>,[,] " Backspace and cursor keys wrap too -set scrolljump=5 " Lines to scroll when cursor leaves screen -set scrolloff=3 " Minimum lines to keep above and below cursor +set scrolljump=1 " Lines to scroll when cursor leaves screen +set scrolloff=0 " Minimum lines to keep above and below cursor set list " }