DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: 9c6639c62ce29f116333c1f30a136ba4b62334cb nvim-flake/config/plugins/lsp.nix -rw-r--r-- 480 bytes
9c6639c6Jonni Liljamo feat(silicon): init a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  plugins = {
    lsp = {
      enable = true;
      servers = {
        gopls.enable = true;
        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;
  };
}