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
these are not valid filetypes
This commit is contained in:
parent
0f7a1ff6ec
commit
3f2eb2740f
2 changed files with 2 additions and 1 deletions
|
|
@ -476,6 +476,7 @@ https://github.com/gorbit99/codewindow.nvim
|
||||||
- Add Arduino support with [arduino-language-server].
|
- Add Arduino support with [arduino-language-server].
|
||||||
- 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.
|
||||||
|
- Remove invalid filetypes from bash lsp config (`ash` and `dash`).
|
||||||
|
|
||||||
[itscrystalline](https://github.com/itscrystalline):
|
[itscrystalline](https://github.com/itscrystalline):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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"];
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue