aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/biome.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lsp/biome.lua')
-rw-r--r--lsp/biome.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/biome.lua b/lsp/biome.lua
index 5adc379a..b30c0e75 100644
--- a/lsp/biome.lua
+++ b/lsp/biome.lua
@@ -43,7 +43,7 @@ return {
-- As stated in the documentation above, this LSP supports monorepos and simple projects.
-- We select then from the project root, which is identified by the presence of a package
-- manager lock file.
- local project_root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb' }
+ local project_root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' }
local project_root = vim.fs.root(bufnr, project_root_markers)
if not project_root then
return nil