DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: 6b308ab08a18f703b7ec95d438a36fd615f13bc9 nvim-flake/config/plugins/lsp.nix -rw-r--r-- 594 bytes
6b308ab0Jonni Liljamo fix(lsp): rust-analyzer loadOutDirsFromCheck 3 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  plugins = {
    lsp = {
      enable = true;
      servers = {
        gopls.enable = true;
        html.enable = true;
        htmx.enable = true;
        nil_ls.enable = true;
        protols.enable = true;
        pylsp.enable = true;
        rust_analyzer = {
          enable = true;
          installCargo = false;
          installRustc = false;
          settings.cargo.loadOutDirsFromCheck = true;
        };
        taplo.enable = true;
        tailwindcss.enable = true;
        templ.enable = true;
        yamlls.enable = true;
      };
    };
    fidget.enable = true;
  };
}