From 7e10a92e1797c4188efed526fbd22c6bd32b5bc5 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Tue, 22 Mar 2022 16:59:41 +0100 Subject: [PATCH] Update kitty theme --- config/kitty/diff.conf | 19 ------------ config/kitty/dracula.conf | 62 --------------------------------------- programs/kitty.nix | 11 ++----- 3 files changed, 2 insertions(+), 90 deletions(-) delete mode 100644 config/kitty/diff.conf delete mode 100644 config/kitty/dracula.conf diff --git a/config/kitty/diff.conf b/config/kitty/diff.conf deleted file mode 100644 index 5fec447..0000000 --- a/config/kitty/diff.conf +++ /dev/null @@ -1,19 +0,0 @@ -foreground #f8f8f2 -background #282a36 -title_fg #f8f8f2 -title_bg #282a36 -margin_bg #6272a4 -margin_fg #44475a -removed_bg #ff5555 -highlight_removed_bg #ff5555 -removed_margin_bg #ff5555 -added_bg #50fa7b -highlight_added_bg #50fa7b -added_margin_bg #50fa7b -filler_bg #44475a -hunk_margin_bg #44475a -hunk_bg #bd93f9 -search_bg #8be9fd -search_fg #282a36 -select_bg #f1fa8c -select_fg #282a36 diff --git a/config/kitty/dracula.conf b/config/kitty/dracula.conf deleted file mode 100644 index 8bee635..0000000 --- a/config/kitty/dracula.conf +++ /dev/null @@ -1,62 +0,0 @@ -# https://draculatheme.com/kitty -# -# Installation instructions: -# -# cp dracula.conf ~/.config/kitty/ -# echo "include dracula.conf" >> ~/.config/kitty/kitty.conf -# -# Then reload kitty for the config to take affect. -# Alternatively copy paste below directly into kitty.conf - -foreground #f8f8f2 -background #282a36 -selection_foreground #ffffff -selection_background #44475a - -url_color #8be9fd - -# black -color0 #21222c -color8 #6272a4 - -# red -color1 #ff5555 -color9 #ff6e6e - -# green -color2 #50fa7b -color10 #69ff94 - -# yellow -color3 #f1fa8c -color11 #ffffa5 - -# blue -color4 #bd93f9 -color12 #d6acff - -# magenta -color5 #ff79c6 -color13 #ff92df - -# cyan -color6 #8be9fd -color14 #a4ffff - -# white -color7 #f8f8f2 -color15 #ffffff - -# Cursor colors -cursor #f8f8f2 -cursor_text_color background - -# Tab bar colors -active_tab_foreground #282a36 -active_tab_background #f8f8f2 -inactive_tab_foreground #282a36 -inactive_tab_background #6272a4 - -# Marks -mark1_foreground #282a36 -mark1_background #ff5555 diff --git a/programs/kitty.nix b/programs/kitty.nix index 501a737..4372617 100644 --- a/programs/kitty.nix +++ b/programs/kitty.nix @@ -35,18 +35,11 @@ scrollback_pager_history_size = 2; }; + theme = "Dracula"; + font = { name = "JetBrainsMono Nerd Font"; size = 13; }; - - extraConfig = '' - include dracula.conf - ''; - }; - - xdg.configFile.kitty = { - source = ../config/kitty; - recursive = true; }; }