helix: use config from old setup
alacritty: use smaller font
This commit is contained in:
parent
6502b3a36e
commit
560fa7ddc4
1 changed files with 13 additions and 0 deletions
13
home.nix
13
home.nix
|
@ -189,6 +189,7 @@ in
|
||||||
services.picom.enable = true;
|
services.picom.enable = true;
|
||||||
programs.alacritty.settings.window.opacity = 0.7;
|
programs.alacritty.settings.window.opacity = 0.7;
|
||||||
programs.alacritty.settings.font.normal.family = "Monocraft";
|
programs.alacritty.settings.font.normal.family = "Monocraft";
|
||||||
|
programs.alacritty.settings.font.size = 12;
|
||||||
#services.dunst.enable = true;
|
#services.dunst.enable = true;
|
||||||
gtk.enable = true;
|
gtk.enable = true;
|
||||||
gtk.theme = {
|
gtk.theme = {
|
||||||
|
@ -219,7 +220,19 @@ in
|
||||||
cursor-shape = {
|
cursor-shape = {
|
||||||
insert = "bar";
|
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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue