larger font for them eyes
This commit is contained in:
parent
49f6a48623
commit
03715b7c9a
1 changed files with 8 additions and 14 deletions
|
@ -1,22 +1,16 @@
|
||||||
{
|
{ config, pkgs, ... }: {
|
||||||
config,
|
home.sessionVariables = { TERMINAL = "alacritty"; };
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
home.sessionVariables = {TERMINAL = "alacritty";};
|
|
||||||
|
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
window.decorations = "none";
|
window.decorations = "none";
|
||||||
|
|
||||||
mouse_bindings = [
|
mouse_bindings = [{
|
||||||
{
|
|
||||||
mouse = "Middle";
|
mouse = "Middle";
|
||||||
mode = "~Vi";
|
mode = "~Vi";
|
||||||
action = "None";
|
action = "None";
|
||||||
}
|
}];
|
||||||
];
|
|
||||||
scrolling = {
|
scrolling = {
|
||||||
history = 32000;
|
history = 32000;
|
||||||
multiplier = 3;
|
multiplier = 3;
|
||||||
|
@ -24,7 +18,7 @@
|
||||||
|
|
||||||
font = {
|
font = {
|
||||||
family = "Berkeley Mono";
|
family = "Berkeley Mono";
|
||||||
size = 8;
|
size = 12;
|
||||||
};
|
};
|
||||||
|
|
||||||
draw_bold_text_with_bright_colors = true;
|
draw_bold_text_with_bright_colors = true;
|
||||||
|
|
Loading…
Reference in a new issue