Fix vim with cursor change, reset cursor to default block for kitty, because the shell manages it anyway
This commit is contained in:
parent
c1b80c24f8
commit
49c7402355
2 changed files with 5 additions and 3 deletions
|
@ -151,7 +151,7 @@ cursor_text_color #111111
|
|||
#: with the background color of the cell underneath instead, use the
|
||||
#: special keyword: background
|
||||
|
||||
cursor_shape beam
|
||||
cursor_shape block
|
||||
|
||||
#: The cursor shape can be one of (block, beam, underline)
|
||||
|
||||
|
|
|
@ -86,7 +86,6 @@ set shiftwidth=4
|
|||
set softtabstop=4 " number of spaces in tab when editing
|
||||
" }}}
|
||||
" UI CONFIG {{{
|
||||
" The default cursor in normal mode is block but this will be overridden by any shell configuration.
|
||||
let &t_SI = "\e[5 q" " cursor beam on insert mode
|
||||
let &t_SR = "\e[3 q" " cursor underline on replace mode
|
||||
let &t_EI = "\e[2 q" " cursor block otherwise
|
||||
|
@ -126,8 +125,11 @@ nnoremap k gk
|
|||
augroup configgroup
|
||||
autocmd!
|
||||
|
||||
" reset cursor on start:
|
||||
" Reset cursor on start: the default cursor in normal mode is block but this
|
||||
" will be overridden by any shell/terminal configuration.
|
||||
autocmd VimEnter * silent !echo -en "\e[2 q"
|
||||
" Remove garbage in command section due to the above line
|
||||
autocmd VimEnter * redraw!
|
||||
|
||||
autocmd VimEnter * highlight clear SignColumn
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue