languages/go: remove gotmpl from filetypes

`:checkhealth` output:

```
- ⚠️ WARNING Unknown filetype 'gotmpl' (Hint: filename extension != filetype).
```
This commit is contained in:
poz 2026-05-13 02:58:15 +02:00
commit b4db22087b
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View file

@ -480,6 +480,7 @@ https://github.com/gorbit99/codewindow.nvim
- Remove invalid filetypes from bash lsp config (`ash` and `dash`).
- Remove invalid filetypes from glsl lsp config (`vert`, `tesc`, `tese`, `frag`,
`geom`, `comp`).
- Remove invalid filetype from go lsp config (`gotmpl`).
[itscrystalline](https://github.com/itscrystalline):

View file

@ -304,7 +304,7 @@ in {
vim.lsp = {
presets = genAttrs cfg.lsp.servers (_: {enable = true;});
servers = genAttrs cfg.lsp.servers (_: {
filetypes = ["go" "gomod" "gosum" "gowork" "gotmpl"];
filetypes = ["go" "gomod" "gosum" "gowork"];
});
};
})