diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-09 19:22:29 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-09 19:22:29 -0800 |
commit | eff497569884201f06f1ef4e44f9b4df1bdbb99e (patch) | |
tree | 41b89f2c12b6ba209af8883a553cd19fcef5d857 | |
parent | git: update list of things to ignore (diff) | |
download | world-eff497569884201f06f1ef4e44f9b4df1bdbb99e.tar.gz |
alacritty: more settings
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/terminal.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/users/fcuny/terminal.nix b/users/fcuny/terminal.nix index d1352e7..ca3b2e8 100644 --- a/users/fcuny/terminal.nix +++ b/users/fcuny/terminal.nix @@ -5,7 +5,17 @@ enable = true; settings = { - env.TERM = "xterm-256color"; + env = { + TERM = "xterm-256color"; + WINIT_X11_SCALE_FACTOR = "1.2"; + }; + draw_bold_text_with_bright_colors = true; + selection = { + save_to_clipboard = true; + }; + font = { + size = 12; + }; }; }; } |