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 = {}, + }, + }, + }, +}