From 2d5a268cfdfd5214977d10f014a4f65a41a7cef5 Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Thu, 26 Dec 2024 17:35:51 -0800 Subject: [PATCH] Move kitty config to home-manager. --- home.nix | 7 +++++++ kitty/Tomorrow_Night_Eighties.conf | 21 +++++++++++++++++++++ kitty/kitty.conf | 5 +++++ 3 files changed, 33 insertions(+) create mode 100644 kitty/Tomorrow_Night_Eighties.conf create mode 100644 kitty/kitty.conf diff --git a/home.nix b/home.nix index 5620d20..8adbc15 100644 --- a/home.nix +++ b/home.nix @@ -2,6 +2,7 @@ { home = { packages = with pkgs; [ + # Version Control git jujutsu ]; @@ -26,4 +27,10 @@ }; }; }; + + xdg.configFile = { + # Add kitty manually since there is an error with running it after installed with homemanager. + "kitty/Tomorrow_Night_Eighties.conf".source = ./kitty/Tomorrow_Night_Eighties.conf; + "kitty/kitty.conf".source = ./kitty/kitty.conf; + }; } diff --git a/kitty/Tomorrow_Night_Eighties.conf b/kitty/Tomorrow_Night_Eighties.conf new file mode 100644 index 0000000..404efc7 --- /dev/null +++ b/kitty/Tomorrow_Night_Eighties.conf @@ -0,0 +1,21 @@ +background #2c2c2c +foreground #cccccc +cursor #cccccc +selection_background #505050 +color0 #000000 +color8 #000000 +color1 #f17779 +color9 #f17779 +color2 #99cc99 +color10 #99cc99 +color3 #ffcc66 +color11 #ffcc66 +color4 #6699cc +color12 #6699cc +color5 #cc99cc +color13 #cc99cc +color6 #66cccc +color14 #66cccc +color7 #fffefe +color15 #fffefe +selection_foreground #2c2c2c diff --git a/kitty/kitty.conf b/kitty/kitty.conf new file mode 100644 index 0000000..29a38b1 --- /dev/null +++ b/kitty/kitty.conf @@ -0,0 +1,5 @@ +font_family Source Code Pro + +include ./Tomorrow_Night_Eighties.conf + +shell /usr/bin/zsh