nvim/lua/cosmic/plugins/which-key/init.lua
2023-01-09 15:33:55 -08:00

15 lines
449 B
Lua

local user_config = require('cosmic.core.user')
return {
{ -- color scheme
'folke/which-key.nvim',
config = function()
require('which-key').setup({
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
})
end,
event = 'VeryLazy',
enabled = not vim.tbl_contains(user_config.disable_builtin_plugins, 'which-key'),
},
}