mirror of
https://github.com/DefectingCat/nvim
synced 2025-07-15 16:51:33 +00:00
add biome lsp
This commit is contained in:
@ -77,6 +77,30 @@ return {
|
||||
capabilities = capabilities,
|
||||
})
|
||||
end,
|
||||
["biome"] = function()
|
||||
lspconfig["biome"].setup({
|
||||
capabilities = capabilities,
|
||||
settings = {
|
||||
cmd = { "biome", "lsp-proxy" },
|
||||
filetypes = {
|
||||
"astro",
|
||||
"css",
|
||||
"graphql",
|
||||
"javascript",
|
||||
"javascriptreact",
|
||||
"json",
|
||||
"jsonc",
|
||||
"svelte",
|
||||
"typescript",
|
||||
"typescript.tsx",
|
||||
"typescriptreact",
|
||||
"vue",
|
||||
"markdown",
|
||||
},
|
||||
single_file_support = true,
|
||||
},
|
||||
})
|
||||
end,
|
||||
["dockerls"] = function()
|
||||
lspconfig["dockerls"].setup({
|
||||
settings = {
|
||||
|
Reference in New Issue
Block a user