nvim: add which-key

This commit is contained in:
2026-01-22 00:26:32 +01:00
parent d45450227e
commit 6371fee81b
3 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
vim.pack.add({ "https://github.com/folke/which-key.nvim" })
local ok, whichkey = pcall(require, "which-key")
if ok then
whichkey.setup({ preset = "helix", delay = 1000 })
else
print("plugin whichkey missing")
end