nixvim
nixvim copied to clipboard
[BUG] BUG: Some lspconfig lsp filetypes option doesn't work (html for example)
| Field | Description |
|---|---|
| Plugin | lsp |
| Nixpkgs | unstable |
| Home Manager | unstable |
- [x] I have read the FAQ and my bug is not listed there.
Description
I'm using standalone nixvim template.
Minimal, Reproducible Example (MRE)
programs.nixvim = {
plugins.lsp {
enable = true;
servers = {
html = {
enable = true;
filetypes = [ "html" "test" ]; # this doesn't work (opened in html file and :LspInfo showed html and templ only
};
gopls = {
enable = true;
filetypes = [ "go" "test" ]; # this works
};
};
};
}