diff options
-rw-r--r-- | .config/fontconfig/fonts.conf | 2 | ||||
-rw-r--r-- | .config/foot/foot.ini | 21 | ||||
-rw-r--r-- | .config/kitty/kitty.conf | 78 |
3 files changed, 79 insertions, 22 deletions
diff --git a/.config/fontconfig/fonts.conf b/.config/fontconfig/fonts.conf index 7eb3159..eb5de38 100644 --- a/.config/fontconfig/fonts.conf +++ b/.config/fontconfig/fonts.conf @@ -31,7 +31,7 @@ <alias> <family>monospace</family> <prefer> - <family>LiterationMono Nerd Font Propo</family> + <family>JetBrainsMono Nerd Font Propo</family> <family>Noto Color Emoji</family> <family>FontAwesome</family> <family>SymbolsNerdFont</family> diff --git a/.config/foot/foot.ini b/.config/foot/foot.ini deleted file mode 100644 index 1f17ff0..0000000 --- a/.config/foot/foot.ini +++ /dev/null @@ -1,21 +0,0 @@ -include=/usr/share/foot/themes/gruvbox-dark -font=monospace:size=14 -font-size-adjustment=3 -# dpi-aware=true - -[cursor] -# style=beam - -[colors] -alpha = 0.9 - -[key-bindings] -clipboard-copy=Mod1+c -clipboard-paste=Mod1+v -scrollback-up-line=Mod1+k -scrollback-down-line=Mod1+j -font-increase=Mod1+Shift+k -font-decrease=Mod1+Shift+j -font-reset=Mod1+0 -show-urls-launch=Mod1+l -show-urls-copy=Mod1+y diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf new file mode 100644 index 0000000..6d63219 --- /dev/null +++ b/.config/kitty/kitty.conf @@ -0,0 +1,78 @@ +# SETTINGS +font_size 14 +background_opacity 0.9 +confirm_os_window_close 0 +window_padding_width 5 +cursor_blink_interval 0 + +# THEME +# The basic colors +foreground #cdd6f4 +background #1e1e2e +selection_foreground #1e1e2e +selection_background #f5e0dc + +# Cursor colors +cursor #f5e0dc +cursor_text_color #1e1e2e + +# URL underline color when hovering with mouse +url_color #f5e0dc + +# Kitty window border colors +active_border_color #b4befe +inactive_border_color #6c7086 +bell_border_color #f9e2af + +# OS Window titlebar colors +wayland_titlebar_color system +macos_titlebar_color system + +# Tab bar colors +active_tab_foreground #11111b +active_tab_background #cba6f7 +inactive_tab_foreground #cdd6f4 +inactive_tab_background #181825 +tab_bar_background #11111b + +# Colors for marks (marked text in the terminal) +mark1_foreground #1e1e2e +mark1_background #b4befe +mark2_foreground #1e1e2e +mark2_background #cba6f7 +mark3_foreground #1e1e2e +mark3_background #74c7ec + +# The 16 terminal colors + +# black +color0 #45475a +color8 #585b70 + +# red +color1 #f38ba8 +color9 #f38ba8 + +# green +color2 #a6e3a1 +color10 #a6e3a1 + +# yellow +color3 #f9e2af +color11 #f9e2af + +# blue +color4 #89b4fa +color12 #89b4fa + +# magenta +color5 #f5c2e7 +color13 #f5c2e7 + +# cyan +color6 #94e2d5 +color14 #94e2d5 + +# white +color7 #bac2de +color15 #a6adc8 |