diff --git a/docs/manual/release-notes/rl-0.9.md b/docs/manual/release-notes/rl-0.9.md index d883a67c..88bf2008 100644 --- a/docs/manual/release-notes/rl-0.9.md +++ b/docs/manual/release-notes/rl-0.9.md @@ -484,6 +484,7 @@ https://github.com/gorbit99/codewindow.nvim - Remove invalid filetype from markdown lsp config (`mdx`). - Remove invalid filetypes from ocaml lsp config (`menhir`, `ocamlinterface`, `ocamllex` and `reason`). +- Remove invalid filetypes from html lsp config (`shtml` and `htm`). [itscrystalline](https://github.com/itscrystalline): diff --git a/modules/plugins/languages/html.nix b/modules/plugins/languages/html.nix index 9596d74e..98da0b37 100644 --- a/modules/plugins/languages/html.nix +++ b/modules/plugins/languages/html.nix @@ -117,7 +117,7 @@ in { vim.lsp = { presets = genAttrs cfg.lsp.servers (_: {enable = true;}); servers = genAttrs cfg.lsp.servers (_: { - filetypes = ["html" "shtml" "xhtml" "htm"]; + filetypes = ["html" "xhtml"]; }); }; })