Skip to content

Commit

Permalink
[nvim] adjust which-key to be available only for 'z'
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-popov-tech committed Jun 4, 2024
1 parent c54850a commit ef7d7ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nvim/.config/nvim/lua/plugins/base.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ return {
opts = {
plugins = {
marks = true, -- shows a list of your marks on ' and `
registers = true, -- shows your registers on " in NORMAL or <C-r> in INSERT mode
registers = false, -- shows your registers on " in NORMAL or <C-r> in INSERT mode
-- the presets plugin, adds help for a bunch of default keybindings in Neovim
-- No actual key bindings are created
spelling = {
Expand All @@ -78,7 +78,7 @@ return {
text_objects = true, -- help for text objects triggered after entering an operator
windows = false, -- default bindings on <c-w>
nav = false, -- misc bindings to work with windows
z = true, -- bindings for folds, spelling and others prefixed with z
z = false, -- bindings for folds, spelling and others prefixed with z
g = true, -- bindings for prefixed with g
},
},
Expand Down

0 comments on commit ef7d7ff

Please sign in to comment.