about summary refs log tree commit diff
path: root/home/profiles/alacritty.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-12-09 09:15:23 -0800
committerFranck Cuny <franck@fcuny.net>2023-12-09 09:15:23 -0800
commit543fcc38c9c48349d6988b1ace119f0cef2d6efa (patch)
treeae8174b09797fd19e365f60bf25a9d20b222c855 /home/profiles/alacritty.nix
parentinstall kind / configure the dock (diff)
downloadworld-543fcc38c9c48349d6988b1ace119f0cef2d6efa.tar.gz
delete even more unused configurations
Diffstat (limited to 'home/profiles/alacritty.nix')
-rw-r--r--home/profiles/alacritty.nix51
1 files changed, 0 insertions, 51 deletions
diff --git a/home/profiles/alacritty.nix b/home/profiles/alacritty.nix
deleted file mode 100644
index 2789f12..0000000
--- a/home/profiles/alacritty.nix
+++ /dev/null
@@ -1,51 +0,0 @@
-{
-  programs.alacritty = {
-    enable = true;
-    settings = {
-      env = {
-        TERM = "xterm-256color";
-      };
-
-      live_config_reload = true;
-      draw_bold_text_with_bright_colors = true;
-      selection = { save_to_clipboard = true; };
-
-      colors = {
-        primary = {
-          background = "#000000";
-          foreground = "#D3D7CF";
-        };
-
-        normal = {
-          black = "#2E3436";
-          red = "#CC0000";
-          green = "#4E9A06";
-          yellow = "#C4A000";
-          blue = "#3465A4";
-          magenta = "#EF33C0";
-          cyan = "#04B5B8";
-          white = "#D3D7CF";
-        };
-
-        bright = {
-          black = "#555753";
-          red = "#EF2929";
-          green = "#8AE234";
-          yellow = "#FCE94F";
-          blue = "#729FCF";
-          magenta = "#EE38DA";
-          cyan = "#34E2E2";
-          white = "#EEEEEC";
-        };
-      };
-      font = {
-        size = 13;
-        normal.family = "Source Code Pro";
-      };
-      cursor = {
-        style.blinking = "Never";
-        unfocused_hollow = true;
-      };
-    };
-  };
-}