Making kitty theme be "Pro" and aliasing ls and grep to have pretty

colors
This commit is contained in:
Daniel Weber 2024-12-10 20:42:29 -05:00
parent 1a84d6156e
commit b5fc83cab6
3 changed files with 34 additions and 22 deletions

View File

@ -1,21 +1,23 @@
background #111213 # Theme ported from the Mac Terminal application.
foreground #cacecd
cursor #e2be21 background #000000
selection_background #303233 foreground #f2f2f2
color0 #323232 cursor #4d4d4d
color8 #323232 selection_background #414141
color1 #c22832 color0 #000000
color9 #c22832 color8 #666666
color2 #8ec43d color1 #990000
color10 #8ec43d color9 #e50000
color3 #e0c64f color2 #00a600
color11 #e0c64f color10 #00d900
color4 #43a5d5 color3 #999900
color12 #43a5d5 color11 #e5e500
color5 #8b57b5 color4 #1f08db
color13 #8b57b5 color12 #0000ff
color6 #8ec43d color5 #b200b2
color14 #8ec43d color13 #e500e5
color7 #eeeeee color6 #00a6b2
color15 #ffffff color14 #00e5e5
selection_foreground #111213 color7 #bfbfbf
color15 #e5e5e5
selection_foreground #000000

View File

@ -1,5 +1,11 @@
# BEGIN_KITTY_THEME # BEGIN_KITTY_THEME
# Seti # Pro
include current-theme.conf include current-theme.conf
# END_KITTY_THEME # END_KITTY_THEME
enable_audio_bell no enable_audio_bell no
# BEGIN_KITTY_FONTS
font_family family="Source Code Pro"
bold_font auto
italic_font auto
bold_italic_font auto
# END_KITTY_FONTS

View File

@ -5,6 +5,10 @@ if [ -f /etc/bashrc ]; then
. /etc/bashrc . /etc/bashrc
fi fi
alias ls='ls --color=auto'
alias ll='ls -alh --color=auto'
alias grep='grep --color=auto'
if [ -f "${HOME}/.bash_aliases" ]; then if [ -f "${HOME}/.bash_aliases" ]; then
source "${HOME}/.bash_aliases" source "${HOME}/.bash_aliases"
fi fi