pojokcodeid.nvim-lazy/lua/plugins/ui.lua
2024-05-20 08:42:59 +07:00

21 lines
340 B
Lua

return {
-- dashboard
{
"goolord/alpha-nvim",
lazy = true,
event = "VimEnter",
config = function()
require("user.alpha")
end,
},
-- key mapping
{
"folke/which-key.nvim",
lazy = true,
keys = { "<leader>", '"', "'", "`", "c", "v" },
event = "VeryLazy",
config = function()
require("user.whichkey")
end,
},
}