nvim/lua/plugins/project.lua

14 lines
401 B
Lua
Raw Normal View History

return {
"ahmedkhalf/project.nvim",
2023-05-16 09:22:33 +01:00
name = "project_nvim",
2023-05-16 12:38:46 +01:00
event = { "BufReadPre", "BufNewFile" },
2023-05-16 09:22:33 +01:00
config = true,
opts = {
detection_methods = { "lsp", "pattern" },
patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json", "index.norg" },
ignore_lsp = { "null-ls" },
2023-05-16 09:22:33 +01:00
show_hidden = true,
silent_chdir = true,
},
}