diff --git a/kitty/.config/kitty/current-theme.conf b/kitty/.config/kitty/current-theme.conf index 69c4105..6ffc047 100644 --- a/kitty/.config/kitty/current-theme.conf +++ b/kitty/.config/kitty/current-theme.conf @@ -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 diff --git a/kitty/.config/kitty/kitty.conf b/kitty/.config/kitty/kitty.conf index 8a491cf..e631e39 100644 --- a/kitty/.config/kitty/kitty.conf +++ b/kitty/.config/kitty/kitty.conf @@ -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 diff --git a/top_level/.bashrc b/top_level/.bashrc index 15518d5..681fac4 100644 --- a/top_level/.bashrc +++ b/top_level/.bashrc @@ -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