diff options
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/desktop/terminal.nix | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/users/fcuny/desktop/terminal.nix b/users/fcuny/desktop/terminal.nix index 293e1f3..d67d383 100644 --- a/users/fcuny/desktop/terminal.nix +++ b/users/fcuny/desktop/terminal.nix @@ -1,13 +1,11 @@ -{ config, pkgs, lib, ...}: +{ config, pkgs, lib, ... }: { programs.alacritty = { enable = true; settings = { - env = { - TERM = "xterm-256color"; - }; + env = { TERM = "xterm-256color"; }; colors = { primary = { background = "#ffffff"; @@ -16,12 +14,8 @@ }; live_config_reload = true; draw_bold_text_with_bright_colors = true; - selection = { - save_to_clipboard = true; - }; - font = { - size = 12; - }; + selection = { save_to_clipboard = true; }; + font = { size = 12; }; cursor = { style.blinking = "Never"; unfocused_hollow = true; |