diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2023-08-24 22:29:02 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2023-08-24 22:29:02 +0800 |
commit | bbbb5f9178f346cd1a42f1be537c3f61b21fab96 (patch) | |
tree | ad389a753f9ad3a22c900d4cb69fd6b68143f60a /nvim.lua | |
parent | 185e4f0580b380737e2ea0d74e48f4258e332a77 (diff) |
Update
Diffstat (limited to 'nvim.lua')
-rw-r--r-- | nvim.lua | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -77,7 +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 | ||
83 | -- 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. |
@@ -116,13 +116,16 @@ require('lazy').setup({ | |||
116 | }, | 116 | }, |
117 | 117 | ||
118 | -- Useful plugin to show you pending keybinds. | 118 | -- Useful plugin to show you pending keybinds. |
119 | { 'folke/which-key.nvim', opts = { | 119 | { |
120 | plugins = { | 120 | 'folke/which-key.nvim', |
121 | spelling = { | 121 | opts = { |
122 | enabled = true, -- enabling this will show WhichKey when pressing z= to select spelling suggestions | 122 | plugins = { |
123 | suggestions = 20, -- how many suggestions should be shown in the list? | 123 | spelling = { |
124 | }, | 124 | enabled = true, -- enabling this will show WhichKey when pressing z= to select spelling suggestions |
125 | }} | 125 | suggestions = 20, -- how many suggestions should be shown in the list? |
126 | }, | ||
127 | } | ||
128 | } | ||
126 | }, | 129 | }, |
127 | { | 130 | { |
128 | -- Adds git related signs to the gutter, as well as utilities for managing changes | 131 | -- Adds git related signs to the gutter, as well as utilities for managing changes |