Skip to content

Commit

Permalink
feat: enable spelling plugin by default
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Mar 1, 2023
1 parent 6e190f4 commit 6d886f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ WhichKey comes with the following defaults:
-- the presets plugin, adds help for a bunch of default keybindings in Neovim
-- No actual key bindings are created
spelling = {
enabled = false, -- enabling this will show WhichKey when pressing z= to select spelling suggestions
enabled = true, -- enabling this will show WhichKey when pressing z= to select spelling suggestions
suggestions = 20, -- how many suggestions should be shown in the list?
},
presets = {
Expand Down
2 changes: 1 addition & 1 deletion lua/which-key/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local defaults = {
-- the presets plugin, adds help for a bunch of default keybindings in Neovim
-- No actual key bindings are created
spelling = {
enabled = false, -- enabling this will show WhichKey when pressing z= to select spelling suggestions
enabled = true, -- enabling this will show WhichKey when pressing z= to select spelling suggestions
suggestions = 20, -- how many suggestions should be shown in the list?
},
presets = {
Expand Down

0 comments on commit 6d886f4

Please sign in to comment.