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

@ -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"];
});
};
})