mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
21 lines
340 B
Lua
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,
|
|
},
|
|
}
|