diff --git a/.config/nvim/lua/plugins/extras/lang/web/html.lua b/.config/nvim/lua/plugins/extras/lang/web/html.lua index e85dd525..441f5b77 100644 --- a/.config/nvim/lua/plugins/extras/lang/web/html.lua +++ b/.config/nvim/lua/plugins/extras/lang/web/html.lua @@ -1,4 +1,12 @@ return { + { + "nvim-treesitter/nvim-treesitter", + opts = function(_, opts) + vim.list_extend(opts.ensure_installed, { + "html", + }) + end, + }, { "neovim/nvim-lspconfig", opts = {