diff options
author | 2025-03-06 16:51:51 +0300 | |
---|---|---|
committer | 2025-03-06 16:51:51 +0300 | |
commit | 104bb1a8a21d8526d326e4e0cb44ace6206c5236 (patch) | |
tree | c7ea0a9415bb0f644c26950d05d247f904b698d8 /lua/config/plugins/extra.lua | |
parent | feat: basic proof-of-concept configuration (diff) | |
download | neovim-configuration-104bb1a8a21d8526d326e4e0cb44ace6206c5236.tar.gz neovim-configuration-104bb1a8a21d8526d326e4e0cb44ace6206c5236.tar.bz2 neovim-configuration-104bb1a8a21d8526d326e4e0cb44ace6206c5236.tar.lz neovim-configuration-104bb1a8a21d8526d326e4e0cb44ace6206c5236.tar.xz neovim-configuration-104bb1a8a21d8526d326e4e0cb44ace6206c5236.tar.zst neovim-configuration-104bb1a8a21d8526d326e4e0cb44ace6206c5236.zip |
feat: add `leap`
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, + }, } |