aboutsummaryrefslogtreecommitdiffstats
path: root/lsp
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2025-08-18 17:08:58 +0200
committerGitHub <noreply@github.com>2025-08-18 08:08:58 -0700
commit5cbe908289fab136a6fc373d3702e99ea597e037 (patch)
tree61bcb60a3eb71db36ea83874ce6801c64793f20f /lsp
parentfix: vtsls does not start in monorepo with `bun.lock` #4007 (diff)
downloadnvim-lspconfig-5cbe908289fab136a6fc373d3702e99ea597e037.tar
nvim-lspconfig-5cbe908289fab136a6fc373d3702e99ea597e037.tar.gz
nvim-lspconfig-5cbe908289fab136a6fc373d3702e99ea597e037.tar.bz2
nvim-lspconfig-5cbe908289fab136a6fc373d3702e99ea597e037.tar.lz
nvim-lspconfig-5cbe908289fab136a6fc373d3702e99ea597e037.tar.xz
nvim-lspconfig-5cbe908289fab136a6fc373d3702e99ea597e037.tar.zst
nvim-lspconfig-5cbe908289fab136a6fc373d3702e99ea597e037.zip
fix(nixd): use '.git' root marker #4009
'nixd' is the only place I saw 'git' in root_markers, without the dot, so I think it's a mistake. Change it to '.git'.
Diffstat (limited to 'lsp')
-rw-r--r--lsp/nixd.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/nixd.lua b/lsp/nixd.lua
index 2d01ebe0..1e526137 100644
--- a/lsp/nixd.lua
+++ b/lsp/nixd.lua
@@ -9,5 +9,5 @@
return {
cmd = { 'nixd' },
filetypes = { 'nix' },
- root_markers = { 'flake.nix', 'git' },
+ root_markers = { 'flake.nix', '.git' },
}