DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: 498eeca9ced6a220a5ccd9b431552cf84f52e22b nvim-flake/config/plugins/lsp.nix -rw-r--r-- 480 bytes
498eeca9Jonni Liljamo feat(telescope): a couple binds 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;
  };
}