diff --git a/CHEATSHEET.md b/CHEATSHEET.md index 76e4240..6a34cf0 100644 --- a/CHEATSHEET.md +++ b/CHEATSHEET.md @@ -1,7 +1,8 @@ -# Neovim cheat sheet +# Neovim command and keybind cheat sheet ## BASICS +- `;` leader key - `:checkhealth []` check base or plugin status - `:checkhealth vim.lsp` show details of LSP attached to buffer - `:verbose set expandtab?` check where `expandtab` has been set last @@ -88,7 +89,6 @@ - `cc` replace whole line - `C` replace to the end of the line - `yy` copy the current line -- `yygccp` comment and copy the current line - `yap` "yank-around-paragraph" - `yip` "yank-inside-paragraph" - `yaW` copy word w/ dashes/underscores @@ -121,4 +121,3 @@ - `gf` open file under cursor in a new buffer - `gx` open link under cursor in default browser - `*` search word under cursor -- `Ctrl`+`l` remove search highlight diff --git a/CHEATSHEET.pdf b/CHEATSHEET.pdf index db27feb..2f25053 100644 Binary files a/CHEATSHEET.pdf and b/CHEATSHEET.pdf differ diff --git a/lua/weeheavy/autocmd.lua b/lua/weeheavy/autocmd.lua index 62b074b..a752c2c 100644 --- a/lua/weeheavy/autocmd.lua +++ b/lua/weeheavy/autocmd.lua @@ -47,10 +47,7 @@ vim.api.nvim_create_autocmd("TextYankPost", { desc = "Highlight when yanking (copying) text", group = vim.api.nvim_create_augroup("weeheavy-highlight-yank", { clear = true }), callback = function() - vim.highlight.on_yank({ - higroup = "IncSearch", - timeout = 100, - }) + vim.highlight.on_yank() end, })