From b2830cfcc5c9c09ebbf9545beb3947a55ce89dbd Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Fri, 20 Mar 2026 12:12:45 +0100 Subject: [PATCH] feat(biome): enable biome lsp for linting --- lua/lazyvim/plugins/extras/formatting/biome.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lua/lazyvim/plugins/extras/formatting/biome.lua b/lua/lazyvim/plugins/extras/formatting/biome.lua index 3d632978..0806e9a4 100644 --- a/lua/lazyvim/plugins/extras/formatting/biome.lua +++ b/lua/lazyvim/plugins/extras/formatting/biome.lua @@ -10,6 +10,7 @@ end local supported = { "astro", "css", + "scss", "graphql", -- "html", "javascript", @@ -30,6 +31,16 @@ return { opts = { ensure_installed = { "biome" } }, }, + { + "neovim/nvim-lspconfig", + opts = { + servers = { + ---@type lspconfig.settings.biome + biome = {}, + }, + }, + }, + { "stevearc/conform.nvim", optional = true,