about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-21 07:11:53 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-21 08:43:35 -0800
commit94814701e2bfa34de20b9baf0bfb5a65b35ef190 (patch)
tree3fa03fc5f50e1116fb08c34cbae17706f1900f00 /users
parentgo: let's hide $GOPATH (diff)
downloadworld-94814701e2bfa34de20b9baf0bfb5a65b35ef190.tar.gz
terminal: a few more tweaks to alacritty
Diffstat (limited to 'users')
-rw-r--r--users/fcuny/desktop/terminal.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/users/fcuny/desktop/terminal.nix b/users/fcuny/desktop/terminal.nix
index 9682e8a..3044ff9 100644
--- a/users/fcuny/desktop/terminal.nix
+++ b/users/fcuny/desktop/terminal.nix
@@ -7,7 +7,6 @@
     settings = {
       env = {
         TERM = "xterm-256color";
-        WINIT_X11_SCALE_FACTOR = "1.2";
       };
       colors = {
         primary = {
@@ -22,6 +21,16 @@
       font = {
         size = 12;
       };
+      cursor = {
+        style.blinking = "Never";
+        unfocused_hollow = true;
+      };
+      window = {
+        padding = {
+          x = 5;
+          y = 5;
+        };
+      };
     };
   };
 }