helix: use config from old setup

alacritty: use smaller font
This commit is contained in:
Daniella / Tove 2024-11-15 21:25:50 +01:00
parent 6502b3a36e
commit 560fa7ddc4
Signed by: TudbuT
GPG key ID: B3CF345217F202D3

View file

@ -189,6 +189,7 @@ in
services.picom.enable = true;
programs.alacritty.settings.window.opacity = 0.7;
programs.alacritty.settings.font.normal.family = "Monocraft";
programs.alacritty.settings.font.size = 12;
#services.dunst.enable = true;
gtk.enable = true;
gtk.theme = {
@ -219,7 +220,19 @@ in
cursor-shape = {
insert = "bar";
};
cursorline = true;
bufferline = "always";
lsp.display-inlay-hints = true;
idle-timeout = 0;
completion-trigger-len = 1;
};
keys.normal = {
minus = "goto_previous_buffer";
"+" = "goto_next_buffer";
"#" = ":buffer-close";
G = "goto_file_end";
};
keys.normal.g.f = "code_action";
};
};
}