languages/asm: filetypes: asm8300 -> asmh8300

https://github.com/neovim/neovim/blob/master/runtime/syntax/asmh8300.vim

`:checkhealth` output:

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

View file

@ -57,7 +57,7 @@ in {
vim.lsp = {
presets = genAttrs cfg.lsp.servers (_: {enable = true;});
servers = genAttrs cfg.lsp.servers (_: {
filetypes = ["asm" "nasm" "masm" "vmasm" "fasm" "tasm" "tiasm" "asm68k" "asm8300"];
filetypes = ["asm" "nasm" "masm" "vmasm" "fasm" "tasm" "tiasm" "asm68k" "asmh8300"];
});
};
})