mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-21 20:11:06 +00:00
feat(biome): enable biome lsp for linting
This commit is contained in:
parent
50159fe344
commit
b2830cfcc5
1 changed files with 11 additions and 0 deletions
|
|
@ -10,6 +10,7 @@ end
|
||||||
local supported = {
|
local supported = {
|
||||||
"astro",
|
"astro",
|
||||||
"css",
|
"css",
|
||||||
|
"scss",
|
||||||
"graphql",
|
"graphql",
|
||||||
-- "html",
|
-- "html",
|
||||||
"javascript",
|
"javascript",
|
||||||
|
|
@ -30,6 +31,16 @@ return {
|
||||||
opts = { ensure_installed = { "biome" } },
|
opts = { ensure_installed = { "biome" } },
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"neovim/nvim-lspconfig",
|
||||||
|
opts = {
|
||||||
|
servers = {
|
||||||
|
---@type lspconfig.settings.biome
|
||||||
|
biome = {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"stevearc/conform.nvim",
|
"stevearc/conform.nvim",
|
||||||
optional = true,
|
optional = true,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue