DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: 9c6e0dddc7c4d1ea29e0f550c5962eb48250e425 nvim-flake/config/plugins/lsp.nix -rw-r--r-- 451 bytes
9c6e0dddJonni Liljamo feat(indent-blankline): init 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  plugins = {
    lsp = {
      enable = true;
      servers = {
        html.enable = true;
        htmx.enable = true;
        nil_ls.enable = true;
        rust-analyzer = {
          enable = true;
          installCargo = false;
          installRustc = false;
        };
        taplo.enable = true;
        tailwindcss.enable = true;
        templ.enable = true;
        yamlls.enable = true;
      };
    };
    fidget.enable = true;
  };
}