switch to base16 project-wide

This commit is contained in:
Sean Kovacs 2026-01-21 14:04:21 -05:00
commit e1c716ef8c
Signed by: sckova
GPG key ID: 00F325187C68651A
28 changed files with 847 additions and 810 deletions

View file

@ -1,24 +1,24 @@
source ~/.config/fish/colors.fish
# source ~/.config/fish/colors.fish
set -l last_status $status
set -l nix_shell_info (
if test -n "$IN_NIX_SHELL"
echo -n "<nix-shell> "
end
)
set -g color_user $color_sky
set -g color_host $color_red
set -g color_cwd $color_green
set -g color_user cyan
set -g color_host red
set -g color_cwd green
# Set host color based on hostname
if test (hostname) = peach
set -g color_host $color_accent
set -g color_host yellow
else if test (hostname) = alien
set -g color_host $color_accent
set -g color_host yellow
else if test (hostname) = vm
set -g color_host $color_accent
set -g color_host yellow
set -g color_cwd normal
else if test (uname) = Darwin
set -g color_host $color_yellow
set -g color_host yellow
end
set -l user_host (set_color $color_user)"$USER"(set_color normal)"@"(set_color $color_host)(prompt_hostname)(set_color normal)