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

View File

@ -1,5 +1,11 @@
# BEGIN_KITTY_THEME
# Seti
# Pro
include current-theme.conf
# END_KITTY_THEME
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
fi
alias ls='ls --color=auto'
alias ll='ls -alh --color=auto'
alias grep='grep --color=auto'
if [ -f "${HOME}/.bash_aliases" ]; then
source "${HOME}/.bash_aliases"
fi