diff options
Diffstat (limited to 'nvim.lua')
-rw-r--r-- | nvim.lua | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -77,6 +77,7 @@ require('lazy').setup({ | |||
77 | 77 | ||
78 | -- For surrounding | 78 | -- For surrounding |
79 | 'machakann/vim-sandwich', | 79 | 'machakann/vim-sandwich', |
80 | |||
80 | 81 | ||
81 | 82 | ||
82 | -- NOTE: This is where your plugins related to LSP can be installed. | 83 | -- NOTE: This is where your plugins related to LSP can be installed. |
@@ -115,7 +116,14 @@ require('lazy').setup({ | |||
115 | }, | 116 | }, |
116 | 117 | ||
117 | -- Useful plugin to show you pending keybinds. | 118 | -- Useful plugin to show you pending keybinds. |
118 | { 'folke/which-key.nvim', opts = {} }, | 119 | { 'folke/which-key.nvim', opts = { |
120 | plugins = { | ||
121 | spelling = { | ||
122 | enabled = true, -- enabling this will show WhichKey when pressing z= to select spelling suggestions | ||
123 | suggestions = 20, -- how many suggestions should be shown in the list? | ||
124 | }, | ||
125 | }} | ||
126 | }, | ||
119 | { | 127 | { |
120 | -- Adds git related signs to the gutter, as well as utilities for managing changes | 128 | -- Adds git related signs to the gutter, as well as utilities for managing changes |
121 | 'lewis6991/gitsigns.nvim', | 129 | 'lewis6991/gitsigns.nvim', |