nixvim icon indicating copy to clipboard operation
nixvim copied to clipboard

[BUG] BUG: Some lspconfig lsp filetypes option doesn't work (html for example)

Open heisfer opened this issue 1 year ago • 0 comments

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
      };
    };
  };
}

heisfer avatar May 10 '24 01:05 heisfer