1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00
dotfiles-local/config/nvim/lua/plugins/whichkey.lua
Dan Barber d8a322f404 Starter Neovim config
Featuring syntax highlighting, file tree sidebar, and fuzzy file
finding.
2023-04-05 16:42:29 -05:00

14 lines
303 B
Lua

return {
"folke/which-key.nvim",
config = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
require("which-key").setup({
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
})
end,
}