From c15f58f3524ac627139d8dfc0a47f84cc558a275 Mon Sep 17 00:00:00 2001 From: Charles Gould Date: Sun, 28 Feb 2021 10:44:33 -0500 Subject: [PATCH] kitty: initial config --- install/install-symlinks.sh | 2 ++ kitty/kitty.conf | 21 +++++++++++++++++++ kitty/themes/snazzy.conf | 42 +++++++++++++++++++++++++++++++++++++ 3 files changed, 65 insertions(+) create mode 100644 kitty/kitty.conf create mode 100644 kitty/themes/snazzy.conf diff --git a/install/install-symlinks.sh b/install/install-symlinks.sh index e96f9cd..36a2b18 100755 --- a/install/install-symlinks.sh +++ b/install/install-symlinks.sh @@ -18,12 +18,14 @@ mkdir -p "$HOME/.config" # Backup configs that are not already symlinked backup_existing "$HOME/.bashrc" backup_existing "$HOME/.config/fish" +backup_existing "$HOME/.config/kitty" backup_existing "$HOME/.config/nvim" backup_existing "$HOME/.config/git" # Create symlinks, forcing updates ln -fsv "$ROOTDIR/bash/.bashrc" "$HOME/.bashrc" # Bash does not support XDG config ln -fsv "$ROOTDIR/fish" "$HOME/.config" +ln -fsv "$ROOTDIR/kitty" "$HOME/.config" ln -fsv "$ROOTDIR/nvim" "$HOME/.config" ln -fsv "$ROOTDIR/git" "$HOME/.config" diff --git a/kitty/kitty.conf b/kitty/kitty.conf new file mode 100644 index 0000000..45c22e2 --- /dev/null +++ b/kitty/kitty.conf @@ -0,0 +1,21 @@ +include themes/snazzy.conf + +font_family Iosevka Term +font_size 12.0 + +background_opacity 0.95 +cursor_shape underline + +tab_bar_edge top +tab_bar_style fade +tab_bar_min_tabs 2 +tab_title_template "{title}" + +active_tab_foreground #000 +active_tab_background #eee +active_tab_font_style bold-italic +inactive_tab_foreground #444 +inactive_tab_background #999 +inactive_tab_font_style normal + +macos_option_as_alt left diff --git a/kitty/themes/snazzy.conf b/kitty/themes/snazzy.conf new file mode 100644 index 0000000..d833ad9 --- /dev/null +++ b/kitty/themes/snazzy.conf @@ -0,0 +1,42 @@ +# Snazzy Colorscheme for Kitty +# Based on https://github.com/sindresorhus/hyper-snazzy + +foreground #eff0eb +background #282a36 +selection_foreground #000000 +selection_background #fffacd +url_color #0087bd +cursor #97979b +cursor_text_color #282a36 + +# black +color0 #282a36 +color8 #686868 + +# red +color1 #ff5c57 +color9 #ff5c57 + +# green +color2 #5af78e +color10 #5af78e + +# yellow +color3 #f3f99d +color11 #f3f99d + +# blue +color4 #57c7ff +color12 #57c7ff + +# magenta +color5 #ff6ac1 +color13 #ff6ac1 + +# cyan +color6 #9aedfe +color14 #9aedfe + +# white +color7 #f1f1f0 +color15 #eff0eb