Updated some plugins

This commit is contained in:
2026-01-04 22:45:48 +00:00
parent 89934e9c95
commit 31aa7837a1
12 changed files with 132 additions and 60 deletions

View File

@@ -1,14 +1,17 @@
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
}
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
local wk = require("which-key")
wk.add({
{ "<leader>sa", name "[S]urround [A]dd" },
})
end,
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
}