
* feat(project): add to mini.starter * fix(project): make alpha and mini.starter optional
46 lines
1.1 KiB
Lua
46 lines
1.1 KiB
Lua
return {
|
|
{
|
|
"telescope.nvim",
|
|
dependencies = {
|
|
-- project management
|
|
{
|
|
"ahmedkhalf/project.nvim",
|
|
opts = {},
|
|
event = "VeryLazy",
|
|
config = function(_, opts)
|
|
require("project_nvim").setup(opts)
|
|
require("telescope").load_extension("projects")
|
|
end,
|
|
keys = {
|
|
{ "<leader>fp", "<Cmd>Telescope projects<CR>", desc = "Projects" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
{
|
|
"goolord/alpha-nvim",
|
|
optional = true,
|
|
opts = function(_, dashboard)
|
|
local button = dashboard.button("p", " " .. " Projects", ":Telescope projects <CR>")
|
|
button.opts.hl = "AlphaButtons"
|
|
button.opts.hl_shortcut = "AlphaShortcut"
|
|
table.insert(dashboard.section.buttons.val, 4, button)
|
|
end,
|
|
},
|
|
{
|
|
"echasnovski/mini.starter",
|
|
optional = true,
|
|
opts = function(_, opts)
|
|
local items = {
|
|
{
|
|
name = "Projects",
|
|
action = "Telescope projects",
|
|
section = string.rep(" ", 22) .. "Telescope",
|
|
},
|
|
}
|
|
vim.list_extend(opts.items, items)
|
|
end,
|
|
},
|
|
}
|