Feat(projects): add project.nvim

Add project.nvim for project management. Add dash option for it.

BREAKING CHANGE: Change dash key `p` from filetree to projects. Filetree now `t`
This commit is contained in:
2025-03-12 21:50:42 -04:00
parent a13da65b8d
commit 163239a405
2 changed files with 6 additions and 2 deletions
+2 -1
View File
@@ -29,7 +29,8 @@ local dashboard_buttons = {
{ key = "n", icon = "", desc = " New File", action = function() vim.cmd("ene | startinsert") end },
{ key = "r", icon = "", desc = " Recent Files", action = function() Pick("oldfiles") end },
{ key = "g", icon = "", desc = " Grep Text", action = function() Pick("grep") end },
{ key = "p", icon = "󰙅 ", desc = " Pick Tree", action = function() Pick("file_browser", "mini") end },
{ key = "p", icon = " ", desc = " Projects", action = function() Pick("projects") end },
{ key = "t", icon = "󰙅 ", desc = " Pick Tree", action = function() Pick("file_browser", "mini") end },
{ key = "z", icon = "", desc = " LazyGit", action = function() Snacks.lazygit() end },
{ key = "c", icon = "", desc = " Config", action = function() Pick("config_files") end },
{ key = "s", icon = "󰶮 ", desc = " Restore Session", action = function() require("persistence").load() end },