Browse Source

vim: fix flickering when clearing terminal

Thomas Dy 4 years ago
parent
commit
1640388d47
1 changed files with 4 additions and 0 deletions
  1. 4 0
      .vim/init.vim

+ 4 - 0
.vim/init.vim

@@ -138,6 +138,10 @@ if has('nvim')
   autocmd BufWinEnter,WinEnter term://* startinsert
   autocmd BufWinEnter,WinEnter term://* startinsert
   autocmd BufLeave term://* stopinsert
   autocmd BufLeave term://* stopinsert
 
 
+  " fix flickering when clearing terminal
+  autocmd TermEnter * setlocal scrolloff=0
+  autocmd TermLeave * setlocal scrolloff=99
+
   nnoremap <Leader>tv :vsp term://$SHELL<CR>
   nnoremap <Leader>tv :vsp term://$SHELL<CR>
   nnoremap <Leader>to :term<CR>
   nnoremap <Leader>to :term<CR>
 endif
 endif