mirror of
https://github.com/tomru/nvim.git
synced 2026-03-02 22:17:13 +01:00
minor changes to project
This commit is contained in:
@@ -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/*", ... }
|
||||
|
||||
Reference in New Issue
Block a user