/ applications / zed.nix
zed.nix
 1  { config, lib, pkgs, ... }: {
 2    programs.zed-editor = {
 3      enable = true;
 4      userSettings =
 5        {
 6          extensions = [ "nix" "toml" "elixir" "make" "java" "gdscript" ];
 7          auto_update = true;
 8          vim_mode = true;
 9          load_direnv = "shell_hook";
10          theme = {
11            mode = "dark";
12            light = "One Light";
13            dark = "Everforest Dark Soft";
14          };
15          show_whitespaces = "all";
16          ui_font_size = 16;
17          buffer_font_size = 16;
18          font_family = "DepartureMono Nerd Font Mono";
19        };
20    };
21  }