languages/markdown: remove mdx from filetypes

`:checkhealth` output:

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

View file

@ -169,7 +169,7 @@ in {
vim.lsp = {
presets = genAttrs cfg.lsp.servers (_: {enable = true;});
servers = genAttrs cfg.lsp.servers (_: {
filetypes = ["markdown" "mdx"];
filetypes = ["markdown"];
});
};
})