aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/lsp.nix
blob: f44dacc4c69cbd03123b0f72432a1ce8f8bb2e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  flake.modules.homeManager.lsp =
    { pkgs, ... }:
    {
      home.packages = with pkgs; [
        go
        gopls
        nil
        nixd
        nixfmt
        lua-language-server
        clang-tools
        texlab
        tinymist
        pyright
        rust-analyzer
        typescript-language-server
        tailwindcss-language-server
      ];
    };
}