fix(extra-lang-angular): fix angular lsp not working for angular.html filetype

This commit is contained in:
Mykhailo Sabatura 2024-06-06 10:00:11 +02:00
parent 86811ad7aa
commit 2d9d60b8ca

View file

@ -32,7 +32,13 @@ return {
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
opts = { opts = {
servers = { servers = {
angularls = {}, angularls = {
filetypes = {
-- default filetypes
"typescript", "html", "typescriptreact", "typescript.tsx",
-- file type added in order to enable treesitter
"angular.html" },
},
}, },
setup = { setup = {
angularls = function() angularls = function()