mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[nvim] don't disable cursorline in terminals because it causes much more trouble than helps
This commit is contained in:
parent
362e169cca
commit
38452b72b7
2 changed files with 8 additions and 5 deletions
|
@ -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
|
||||
" }}}
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
augroup vimrc-terminal
|
||||
autocmd!
|
||||
autocmd TermOpen * setlocal nocursorline | IndentLinesDisable
|
||||
autocmd TermClose * setlocal cursorline
|
||||
augroup END
|
Loading…
Reference in a new issue