From 481358beb7929babc9a331181ab7d1741a44b382 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Mon, 12 Dec 2022 01:17:30 -0500 Subject: [PATCH] Rework custom colors --- config.fish | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/config.fish b/config.fish index f9d2df1..8191736 100644 --- a/config.fish +++ b/config.fish @@ -23,6 +23,21 @@ # * __fish_greeting_fortune_cookies - Overrides the default list of fortune cookies to use for greetings # * __fish_disable_interactive_root_rm - If set, disables automatic aliasing of 'rm' to 'rm -i' when signed in as root +################ +# Color Config # +################ + +set fish_color_command ffa348 +set fish_color_quote 5bc8af +set fish_color_comment 656565 +set fish_color_autosuggestion 656565 +set fish_color_param normal +set fish_color_operator 7d8ac7 +set fish_color_escape 7d8ac7 +set fish_color_error ff6c6b + +set -x LS_COLORS "no=00:fi=00:di=01;94:ln=01;96:or=41;96;01:ex=92:mi=90:pi=35:so=35:bd=33:cd=33:" + ##################### # Setting Variables # ##################### @@ -31,8 +46,6 @@ set __fish_git_prompt_show_informative_status true set fish_key_bindings fish_default_key_bindings -set fish_color_command 8787ff - set VIRTUAL_ENV_DISABLE_PROMPT true fish_add_path -aP ~/.local/bin @@ -208,12 +221,11 @@ function fish_prompt --description 'Display a formatted terminal prompt' set -l normal (set_color normal) set -l white (set_color brwhite) - set -l yellow (set_color ffeb3b bryellow) - set -l cyan (set_color 62d7ff brcyan) - set -l magenta (set_color f358dc brmagenta) - set -l gray (set_color 5e5e5e brblack) - set -l darkgray (set_color 3b3b3b brblack) - set -l red (set_color f44336 brred) + set -l gray (set_color 7b7b7b brblack) + set -l darkgray (set_color 454545 brblack) + set -l cyan (set_color 7ee5ff brblue) + set -l teal (set_color 5bc8af brgreen) + set -l red (set_color ff6c6b brred) ############# # SSH Segment @@ -234,7 +246,7 @@ function fish_prompt --description 'Display a formatted terminal prompt' ################# # User@Host Segment - set -l user_host_seg "$cyan$USER$normal at $magenta$__fish_prompt_hostname$normal " + set -l user_host_seg "$cyan$USER$normal at $teal$__fish_prompt_hostname$normal " ########################### # Working Directory (PWD) Segment