add nvim config for projects
This commit is contained in:
parent
79c05c9bf0
commit
3782f15f0a
1 changed files with 42 additions and 0 deletions
42
dot_config/nvim/lua/plugins/projects.lua
Normal file
42
dot_config/nvim/lua/plugins/projects.lua
Normal 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,
|
||||
},
|
||||
}
|
Loading…
Add table
Reference in a new issue