summaryrefslogtreecommitdiff
path: root/lua/config/plugins/extra.lua
diff options
context:
space:
mode:
authorLibravatar Mora Unie Youer <[email protected]>2025-03-06 16:21:06 +0300
committerLibravatar Mora Unie Youer <[email protected]>2025-03-06 16:21:06 +0300
commitccdef9f43b27c274efe4711e6c5a2d4fe78e261c (patch)
tree3e94c6b8e5f4e21cce52164557c38e208fe72015 /lua/config/plugins/extra.lua
parentfeat: initial commit with nixCats (diff)
downloadneovim-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 'lua/config/plugins/extra.lua')
-rw-r--r--lua/config/plugins/extra.lua13
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,
+ },
+}