Files
garandos/modules/home/zed/user-settings/default.nix
GarandPLG 88b161347d Add FiraCode Nerd Font Mono to Zed UI and terminal
Also set buffer font family to the same FiraCode Nerd Font Mono.
2026-02-11 18:01:48 +01:00

44 lines
989 B
Nix

_: {
programs.zed-editor.userSettings = {
telemetry = {
diagnostics = false;
metrics = false;
};
icon_theme = "VSCode Icons for Zed (Dark)";
ui_font_family = "FiraCode Nerd Font Mono";
ui_font_size = 16;
buffer_font_family = "FiraCode Nerd Font Mono";
buffer_font_size = 15;
terminal = {
font_family = "FiraCode Nerd Font Mono";
font_size = 14;
};
theme = {
mode = "dark";
light = "One Light";
dark = "One Dark Pro Monokai Darker";
};
diagnostics.inline = {
enabled = true;
max_severity = "error";
};
inlay_hints = {
enabled = true;
show_type_hints = true;
show_parameter_hints = true;
show_other_hints = true;
show_background = false;
edit_debounce_ms = 700;
scroll_debounce_ms = 50;
toggle_on_modifiers_press = null;
};
};
imports = [
./agent.nix
./language-models.nix
./languages.nix
./lsp.nix
];
}