[nvim] don't disable cursorline in terminals because it causes much more trouble than helps

This commit is contained in:
Dmytro Meleshko 2019-11-30 13:00:37 +02:00
parent 362e169cca
commit 38452b72b7
2 changed files with 8 additions and 5 deletions

View File

@ -168,3 +168,11 @@ endif
nmap ]l <Plug>(qf_loc_next)
let g:qf_mapping_ack_style = 1
" }}}
" Terminal {{{
augroup vimrc-terminal
autocmd!
autocmd TermOpen * IndentLinesDisable
augroup END
" }}}

View File

@ -1,5 +0,0 @@
augroup vimrc-terminal
autocmd!
autocmd TermOpen * setlocal nocursorline | IndentLinesDisable
autocmd TermClose * setlocal cursorline
augroup END