blob: f67b8a5a5ecd4972786b5af55bc5f2be4a0a2092 (
plain) (
blame)
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
|
{lib, config, ...}: {
options.zed.enable = lib.mkEnableOption "zed config";
config = lib.mkIf config.zed.enable {
programs.zed-editor = {
enable = true;
userSettings = {
ui_font_size = 18;
buffer_font_size = 18;
theme = {
mode = "system";
light = "Gruvbox Dark Soft";
dark = "Gruvbox Dark Soft";
};
format_on_save = "off";
vim_mode = false;
terminal = {
shell = {
program = "zsh";
};
cursor_shape = "bar";
};
telemetry = {
metrics = false;
};
};
};
};
}
|