languages/bash: remove ash and dash from filetypes

`:checkhealth` output:

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

View file

@ -477,6 +477,7 @@ https://github.com/gorbit99/codewindow.nvim
- Add GLSL support with [glsl_analyzer]. - Add GLSL support with [glsl_analyzer].
- Update fidget-nvim setupOpts and fix NvimTree issue. - Update fidget-nvim setupOpts and fix NvimTree issue.
- Fix asm-lsp's filetypes (`asm8300` -> `asmh8300`). - Fix asm-lsp's filetypes (`asm8300` -> `asmh8300`).
- Remove invalid filetypes from bash lsp config (`ash` and `dash`).
[itscrystalline](https://github.com/itscrystalline): [itscrystalline](https://github.com/itscrystalline):

View file

@ -107,7 +107,7 @@ in {
vim.lsp = { vim.lsp = {
presets = genAttrs cfg.lsp.servers (_: {enable = true;}); presets = genAttrs cfg.lsp.servers (_: {enable = true;});
servers = genAttrs cfg.lsp.servers (_: { servers = genAttrs cfg.lsp.servers (_: {
filetypes = ["bash" "sh" "ash" "dash" "zsh"]; filetypes = ["bash" "sh" "zsh"];
}); });
}; };
}) })