Files
nix-js/.lazy.lua
2026-02-16 13:14:50 +08:00

19 lines
278 B
Lua

vim.lsp.config("biome", {
root_dir = function (_bufnr, on_dir)
on_dir(vim.fn.getcwd())
end
})
vim.lsp.config("rust_analyzer", {
settings = {
["rust-analyzer"] = {
cargo = {
features = {
"inspector"
}
}
}
}
})
return {}