Skip to content

Commit e82dc59

Browse files
committed
chore(tool.project): update project.nvim config
1 parent ffd3eba commit e82dc59

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

lua/modules/configs/tool/project.lua

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,29 @@
11
return function()
22
require("modules.utils").load_plugin("project", {
33
manual_mode = false,
4-
use_lsp = true,
5-
patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json" },
6-
ignore_lsp = { "null-ls", "copilot" },
4+
lsp = {
5+
enabled = true,
6+
ignore = { "null-ls", "copilot" },
7+
use_pattern_matching = false,
8+
no_fallback = false,
9+
},
10+
patterns = {
11+
".bzr",
12+
".csproj",
13+
".git",
14+
".github",
15+
".hg",
16+
".nvim.lua",
17+
".pre-commit-config.yaml",
18+
".pre-commit-config.yml",
19+
".sln",
20+
".svn",
21+
"Makefile",
22+
"Pipfile",
23+
"_darcs",
24+
"package.json",
25+
"pyproject.toml",
26+
},
727
exclude_dirs = {},
828
show_hidden = false,
929
silent_chdir = true,

0 commit comments

Comments
 (0)