minor changes to project

This commit is contained in:
Thomas Ruoff
2025-09-24 14:33:14 +02:00
parent 414053d052
commit d0670a05ac

View File

@@ -11,15 +11,15 @@ return {
-- lsp, while **"pattern"** uses vim-rooter like glob pattern matching. Here
-- order matters: if one is not detected, the other is used as fallback. You
-- can also delete or rearangne the detection methods.
detection_methods = { 'lsp', 'pattern' },
detection_methods = { 'pattern', 'lsp' },
-- All the patterns used to detect root dir, when **"pattern"** is in
-- detection_methods
patterns = { '=bcr', '.git', 'Makefile', 'package.json' },
patterns = { '=bcr', '.git', 'Makefile' },
-- Table of lsp clients to ignore by name
-- eg: { "efm", ... }
ignore_lsp = { 'copilot' },
ignore_lsp = { 'copilot', 'marksman' },
-- Don't calculate root dir on specific directories
-- Ex: { "~/.cargo/*", ... }