Add project, and auto-sessions, also add auto-sessions to the lualine

This commit is contained in:
Martin Larsson 2024-04-09 07:59:25 +02:00
parent fa5dab7882
commit ef90fd5cea
3 changed files with 45 additions and 8 deletions

View file

@ -0,0 +1,18 @@
return {
"ahmedkhalf/project.nvim",
config = function()
require("project_nvim").setup({
patterns = {
".git",
".hg",
".svn",
"Makefile",
"package.json",
"Cargo.toml",
"go.mod",
".clang-tidy",
".clang-format"
},
})
end,
}