add nvim config for projects

This commit is contained in:
liv 2024-03-02 19:14:40 +01:00
parent 79c05c9bf0
commit 3782f15f0a

View file

@ -0,0 +1,42 @@
-- Better project/cd support
return {
{
"gnikdroy/projections.nvim",
config = function()
require("projections").setup({
workspaces = {
"~/Projects/Personal",
},
})
require("telescope").load_extension("projections")
-- Load project if started in a project directory
local switcher = require("projections.switcher")
vim.api.nvim_create_autocmd({ "VimEnter" }, {
callback = function()
if vim.fn.argc() == 0 then
switcher.switch(vim.loop.cwd())
end
end,
})
end,
keys = {
{ "<leader>fp", "<cmd>Telescope projections<CR>", desc = "Search projects" },
},
},
{
"nvimdev/dashboard-nvim",
opts = function(_, opts)
local button = {
action = "Telescope projections",
desc = "Projects",
icon = "🕮 ",
key = "p",
}
button.key_format = " %s"
table.insert(opts.config.center, 6, button)
end,
},
}