add nvim config

This commit is contained in:
maxscout
2025-06-30 21:21:27 -04:00
commit 21debd959b
15 changed files with 316 additions and 0 deletions

13
lua/config/plugins/whichkey.lua Executable file
View File

@@ -0,0 +1,13 @@
return {
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
end,
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
}