mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-27 16:45:32 +00:00
* chore(nvim): remove astronvim and configs * feat(nvim): new, custom nvim configuration
16 lines
273 B
Lua
16 lines
273 B
Lua
local vim = vim
|
|
|
|
return {
|
|
"folke/which-key.nvim",
|
|
enabled = true,
|
|
lazy = false,
|
|
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
|
|
},
|
|
}
|