From 17aaa4604d9927ccabaebae331723d20480e8be9 Mon Sep 17 00:00:00 2001 From: Ava Gaiety W Date: Sat, 23 Mar 2024 01:02:01 -0500 Subject: [PATCH] kitty config --- README.md | 6 +++- kitty-theme.conf | 80 ++++++++++++++++++++++++++++++++++++++++++++++++ kitty.conf | 9 ++++++ 3 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 kitty-theme.conf create mode 100644 kitty.conf diff --git a/README.md b/README.md index 31897ba..0909c38 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,11 @@ Designed for Unix Systems. ## Setup * Install a nice terminal * iterm2 for MacOS (via [brew](https://docs.brew.sh/Installation)) `brew install iterm2` (a color theme is in the root directory, feel free to import it in preferences) - * [Terminology for Linux](https://www.enlightenment.org/about-terminology.md) + * [Kitty for Linux](https://sw.kovidgoyal.net/kitty) + ``` + # ~/.config/kitty/kitty.conf + include ~/path_to_this_cloned_repo/kitty-theme.conf + ``` * [Install asdf](https://asdf-vm.com/#/core-manage-asdf) version manager, configure with tools you'll need * Install [NeoVim](https://neovim.io/) * Install [LunarVim](https://www.lunarvim.org/) diff --git a/kitty-theme.conf b/kitty-theme.conf new file mode 100644 index 0000000..d50dbe6 --- /dev/null +++ b/kitty-theme.conf @@ -0,0 +1,80 @@ +# vim:ft=kitty + +## name: Catppuccin Kitty Macchiato +## author: Catppuccin Org +## license: MIT +## upstream: https://github.com/catppuccin/kitty/blob/main/themes/macchiato.conf +## blurb: Soothing pastel theme for the high-spirited! + + + +# The basic colors +foreground #CAD3F5 +background #24273A +selection_foreground #24273A +selection_background #F4DBD6 + +# Cursor colors +cursor #F4DBD6 +cursor_text_color #24273A + +# URL underline color when hovering with mouse +url_color #F4DBD6 + +# Kitty window border colors +active_border_color #B7BDF8 +inactive_border_color #6E738D +bell_border_color #EED49F + +# OS Window titlebar colors +wayland_titlebar_color #24273A +macos_titlebar_color #24273A + +# Tab bar colors +active_tab_foreground #181926 +active_tab_background #C6A0F6 +inactive_tab_foreground #CAD3F5 +inactive_tab_background #1E2030 +tab_bar_background #181926 + +# Colors for marks (marked text in the terminal) +mark1_foreground #24273A +mark1_background #B7BDF8 +mark2_foreground #24273A +mark2_background #C6A0F6 +mark3_foreground #24273A +mark3_background #7DC4E4 + +# The 16 terminal colors + +# black +color0 #494D64 +color8 #5B6078 + +# red +color1 #ED8796 +color9 #ED8796 + +# green +color2 #A6DA95 +color10 #A6DA95 + +# yellow +color3 #EED49F +color11 #EED49F + +# blue +color4 #8AADF4 +color12 #8AADF4 + +# magenta +color5 #F5BDE6 +color13 #F5BDE6 + +# cyan +color6 #8BD5CA +color14 #8BD5CA + +# white +color7 #B8C0E0 +color15 #A5ADCB diff --git a/kitty.conf b/kitty.conf new file mode 100644 index 0000000..dee730c --- /dev/null +++ b/kitty.conf @@ -0,0 +1,9 @@ +font_family VictorMono Nerd Font Mono +font_size 19 +tab_bar_min_tabs 1 +tab_bar_edge bottom +tab_bar_style powerline +tab_powerline_style slanted +tab_title_template {title}{' :{}:'.format(num_windows) if num_windows > 1 else ''} + +include ./kitty-theme.conf