diff options
Diffstat (limited to 'lua/config/plugins/extra.lua')
-rw-r--r-- | lua/config/plugins/extra.lua | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lua/config/plugins/extra.lua b/lua/config/plugins/extra.lua index 8cf9e70..8e2b35c 100644 --- a/lua/config/plugins/extra.lua +++ b/lua/config/plugins/extra.lua @@ -1,13 +1,13 @@ return { - { - "which-key.nvim", - event = "DeferredUIEnter", - after = function(_) - require("which-key").setup() + { + "which-key.nvim", + event = "DeferredUIEnter", + after = function(_) + require("which-key").setup() - require("which-key").add({ - { "<leader>s", group = "search" }, - }) - end, - }, + require("which-key").add({ + { "<leader>s", group = "search" }, + }) + end, + }, } |