about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-09 19:22:29 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-09 19:22:29 -0800
commiteff497569884201f06f1ef4e44f9b4df1bdbb99e (patch)
tree41b89f2c12b6ba209af8883a553cd19fcef5d857
parentgit: update list of things to ignore (diff)
downloadworld-eff497569884201f06f1ef4e44f9b4df1bdbb99e.tar.gz
alacritty: more settings
Diffstat (limited to '')
-rw-r--r--users/fcuny/terminal.nix12
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;
+      };
     };
   };
 }