diff options
| author | 2025-03-06 16:21:06 +0300 | |
|---|---|---|
| committer | 2025-03-06 16:21:06 +0300 | |
| commit | ccdef9f43b27c274efe4711e6c5a2d4fe78e261c (patch) | |
| tree | 3e94c6b8e5f4e21cce52164557c38e208fe72015 /lua/config/plugins/extra.lua | |
| parent | feat: initial commit with nixCats (diff) | |
| download | neovim-configuration-ccdef9f43b27c274efe4711e6c5a2d4fe78e261c.tar.gz neovim-configuration-ccdef9f43b27c274efe4711e6c5a2d4fe78e261c.tar.bz2 neovim-configuration-ccdef9f43b27c274efe4711e6c5a2d4fe78e261c.tar.lz neovim-configuration-ccdef9f43b27c274efe4711e6c5a2d4fe78e261c.tar.xz neovim-configuration-ccdef9f43b27c274efe4711e6c5a2d4fe78e261c.tar.zst neovim-configuration-ccdef9f43b27c274efe4711e6c5a2d4fe78e261c.zip | |
feat: basic proof-of-concept configuration
Diffstat (limited to '')
| -rw-r--r-- | lua/config/plugins/extra.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/config/plugins/extra.lua b/lua/config/plugins/extra.lua new file mode 100644 index 0000000..8cf9e70 --- /dev/null +++ b/lua/config/plugins/extra.lua @@ -0,0 +1,13 @@ +return { + { + "which-key.nvim", + event = "DeferredUIEnter", + after = function(_) + require("which-key").setup() + + require("which-key").add({ + { "<leader>s", group = "search" }, + }) + end, + }, +} |
