diff options
-rw-r--r-- | init.vim | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -4,5 +4,14 @@ set ignorecase set smartcase set autochdir set confirm -set shortmess=a " Abbreviate messages without info loss. +" set shortmess=a " Abbreviate messages without info loss. set colorcolumn=80 + +command W w +command Wq wq +command Q q +command Wq wq +command WQ wq + +autocmd TextYankPost * silent! lua vim.highlight.on_yank { higroup='IncSearch', timeout=4000 } + |