mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-05-19 05:24:22 +00:00
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:
parent
f8535c8c72
commit
8de5228aa5
2 changed files with 2 additions and 1 deletions
|
|
@ -477,6 +477,7 @@ https://github.com/gorbit99/codewindow.nvim
|
|||
- Add GLSL support with [glsl_analyzer].
|
||||
- Update fidget-nvim setupOpts and fix NvimTree issue.
|
||||
- Fix asm-lsp's filetypes (`asm8300` -> `asmh8300`).
|
||||
- Remove invalid filetypes from bash lsp config (`ash` and `dash`).
|
||||
|
||||
[itscrystalline](https://github.com/itscrystalline):
|
||||
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ in {
|
|||
vim.lsp = {
|
||||
presets = genAttrs cfg.lsp.servers (_: {enable = true;});
|
||||
servers = genAttrs cfg.lsp.servers (_: {
|
||||
filetypes = ["bash" "sh" "ash" "dash" "zsh"];
|
||||
filetypes = ["bash" "sh" "zsh"];
|
||||
});
|
||||
};
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue