✨ feat(nvim): added rome extra
havent test it, i will in the coming weeks tho
This commit is contained in:
parent
1b698a5b7c
commit
b70b318bf3
1 changed files with 17 additions and 0 deletions
17
.config/nvim/lua/plugins/extras/linting/biome.lua
Normal file
17
.config/nvim/lua/plugins/extras/linting/biome.lua
Normal 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 = {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue