vim.lsp.config("biome", { root_dir = function (_bufnr, on_dir) on_dir(vim.fn.getcwd()) end }) vim.lsp.config("eslint", { settings = { eslint = { options = { configFile = "./nix-js/runtime-ts/eslint.config.mts" } } } }) vim.lsp.config("rust_analyzer", { settings = { ["rust-analyzer"] = { cargo = { features = { "inspector" } } } } }) return {}