From 49c7402355ee43f7f107855a72aca14e898f6def Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Fri, 4 Sep 2020 10:32:00 +0200 Subject: [PATCH] Fix vim with cursor change, reset cursor to default block for kitty, because the shell manages it anyway --- dotfiles/kitty.conf | 2 +- dotfiles/vim/vimrc | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/dotfiles/kitty.conf b/dotfiles/kitty.conf index 1910737..da9939a 100644 --- a/dotfiles/kitty.conf +++ b/dotfiles/kitty.conf @@ -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) diff --git a/dotfiles/vim/vimrc b/dotfiles/vim/vimrc index 979f268..0755bb0 100644 --- a/dotfiles/vim/vimrc +++ b/dotfiles/vim/vimrc @@ -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