From ec07c7b6bb39f07649b59f2375adc403c0dc8140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sat, 6 Jan 2024 01:20:45 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=91=EF=B8=8F=20remove(nvim):=20biome?= =?UTF-8?q?=20extra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit need to look into how to implement biome --- .../nvim/lua/plugins/extras/linting/biome.lua | 17 ----------------- 1 file changed, 17 deletions(-) delete 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 deleted file mode 100644 index 7100d64a..00000000 --- a/.config/nvim/lua/plugins/extras/linting/biome.lua +++ /dev/null @@ -1,17 +0,0 @@ -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 = {}, - }, - }, - }, -}