dotfiles/.config/nvim/lua/plugins/extras/lang/web/htmx.lua
2023-11-23 14:09:20 +01:00

17 lines
312 B
Lua

return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
htmx = {},
},
},
},
{
"williamboman/mason.nvim",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "htmx-lsp" })
end,
},
}