more restructure

This commit is contained in:
2022-12-28 14:29:23 +01:00
parent fd16ef223a
commit ce61facff9
18 changed files with 533 additions and 545 deletions

12
lua/plugins/project.lua Normal file
View File

@@ -0,0 +1,12 @@
return {
'ahmedkhalf/project.nvim',
config = function()
require("project_nvim").setup(
{
silent_chdir = true,
ignore_lsp = { 'null-ls', 'cmake' },
patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json", "build_nvim", "real_path.txt" },
})
end,
-- event = 'BufReadPre'
}