feat(nvim): added xml extra

This commit is contained in:
Sergio Laín 2023-12-09 13:19:06 +01:00
parent 310898b7ed
commit 5adf397a07
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -0,0 +1,25 @@
return {
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, { "xml" })
end
end,
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
lemminx = {},
},
},
},
{
"williamboman/mason.nvim",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "lemminx" })
end,
},
}