summary refs log tree commit diff
path: root/modules/home/zed.nix
blob: b8f08a537a6f432b1ca93ec3c90d5d93505812fe (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{ pkgs, lib, ... }:

let
  inherit (pkgs)
    clang-tools
    go
    gopls
    nixd
    nil
    nixfmt-rfc-style
    rust-analyzer
    elixir-ls
    elixir
    ;

  tool = package: lib.getExe package;
in
{
  programs.zed-editor = {
    enable = true;
    extensions = [
      "nix"
      "elixir"
      "hare"
      "make"
      "meson"

      "catppuccin"
    ];

    userSettings = {
      # i. general behaviour

      autosave = "on_focus_change";
      format_on_save = "on";
      base_keymap = "VSCode";
      vim_mode = true;
      load_direnv = "shell_hook"; # load direnv through shell

      auto_update = false;
      auto_install_extensions = { };

      # ii. pretties

      ui_font_size = 16;
      buffer_font_size = 16;
      buffer_font_family = "Berkeley Mono";
      show_whitespaces = "selection";
      hour_format = "hour24";
      relative_line_numbers = true;

      theme = {
        mode = "system";
        light = "Catppuccin Latte";
        dark = "Catppuccin Mocha";
      };

      tabs = {
        # show both the file type icon and
        # git status on the current file tab.
        file_icons = true;
        git_status = true;
      };

      # iii. the terminal

      terminal = {
        alternate_scroll = "off";
        blinking = "off";
        copy_on_select = false;
        dock = "bottom";
        env = {
          TERM = "alacritty";
        };
        font_family = "Berkeley Mono";
        font_size = 16;
        line_height = "comfortable";
        option_as_meta = false;
        shell = "system";
        toolbar = {
          title = true;
        };
        working_directory = "current_project_directory";
      };

      # iv. all the language support

      languages = {
        "C" = {
          language_servers = [ "clangd" ];
          formatter = "language_server";
        };
        "C++" = {
          language_servers = [ "clangd" ];
          formatter = "language_server";
        };
        "Nix" = {
          language_servers = [
            "nixd"
            "!nil"
          ];
          formatter.external = {
            command = tool nixfmt-rfc-style;
            arguments = [
              "--quiet"
              "--"
            ];
          };
        };
        "Go" = {
          language_servers = [ "gopls" ];
          formatter.external = {
            command = lib.getExe' go "gofmt";
            arguments = [ ];
          };
        };
        "Rust" = {
          language_servers = [ "rust-analyzer" ];
          formatter = "language_server";
        };
        "Elixir" = {
          language_servers = [
            "!lexical"
            "elixir-ls"
            "!next-ls"
          ];
          formatter = {
            external = {
              command = lib.getExe' elixir "mix";
              arguments = [
                "format"
                "--stdin-filename"
                "{buffer_path}"
                "-"
              ];
            };
          };
        };
      };

      lsp = {
        clangd.binary.path = lib.getExe' clang-tools "clangd";
        gopls.binary.path = tool gopls;
        nixd.binary.path = tool nixd;
        nil.binary.path = tool nil;
        rust-analyzer.binary.path = tool rust-analyzer;
        elixir-ls.binary.path = tool elixir-ls;
      };

      # v. yuck

      telemetry = {
        diagnostics = false;
        metrics = false;
      };
    };
  };
}