From b70b318bf3b50442d76531ab4e8e5376f3ad7712 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Mon, 4 Dec 2023 11:23:37 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(nvim):=20added=20rome=20extra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit havent test it, i will in the coming weeks tho --- .../nvim/lua/plugins/extras/linting/biome.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .config/nvim/lua/plugins/extras/linting/biome.lua diff --git a/.config/nvim/lua/plugins/extras/linting/biome.lua b/.config/nvim/lua/plugins/extras/linting/biome.lua new file mode 100644 index 00000000..7100d64a --- /dev/null +++ b/.config/nvim/lua/plugins/extras/linting/biome.lua @@ -0,0 +1,17 @@ +return { + { + "williamboman/mason.nvim", + opts = function(_, opts) + opts.ensure_installed = opts.ensure_installed or {} + vim.list_extend(opts.ensure_installed, { "biome" }) + end, + }, + { + "neovim/nvim-lspconfig", + opts = { + servers = { + biome = {}, + }, + }, + }, +}