mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(extra-lang-angular): fix angular lsp not working for angular.html filetype
This commit is contained in:
parent
86811ad7aa
commit
2d9d60b8ca
1 changed files with 7 additions and 1 deletions
|
|
@ -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()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue