feat(nvim): added rome extra

havent test it, i will in the coming weeks tho
This commit is contained in:
Sergio Laín 2023-12-04 11:23:37 +01:00
parent 1b698a5b7c
commit b70b318bf3
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

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