Files
nixos-config/home/programs/neovim/lua/plugins/which-key-nvim.lua
2024-03-02 18:14:05 +01:00

17 lines
285 B
Lua

return {
{
"folke/which-key.nvim",
optional = true,
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
end,
opts = {
defaults = {
["<localLeader>l"] = { name = "+vimtex" },
},
},
},
}