diff --git a/lua/plugins/project.lua b/lua/plugins/project.lua index 27cbae5..4488961 100644 --- a/lua/plugins/project.lua +++ b/lua/plugins/project.lua @@ -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/*", ... }