Skip to content

Instantly share code, notes, and snippets.

@ehatton
Last active July 31, 2020 16:42
Show Gist options
  • Save ehatton/b6782ad59ddf7f5525566e1303740469 to your computer and use it in GitHub Desktop.
Save ehatton/b6782ad59ddf7f5525566e1303740469 to your computer and use it in GitHub Desktop.
Resets fish terminal colors. Uses named colours instead of specific hex values so that it integrates better with terminal colour themes.
# Resets fish terminal colors. Uses named colours instead of specific hex
# values so that it integrates better with terminal colour themes.
set fish_color_autosuggestion brblack
set fish_color_cancel -r
set fish_color_command --bold
set fish_color_comment red
set fish_color_cwd_root red
set fish_color_cwd green
set fish_color_end brmagenta
set fish_color_error brred
# set fish_color_escape bryellow --bold
set fish_color_escape blue
set fish_color_history_current --bold
set fish_color_host normal
set fish_color_match --background=brblue
set fish_color_normal normal
# set fish_color_operator bryellow
set fish_color_operator blue
set fish_color_param cyan
set fish_color_quote yellow
set fish_color_redirection brblue
set fish_color_search_match bryellow --background=brblack
set fish_color_selection white --bold --background=brblack
set fish_color_status red
set fish_color_user brgreen
set fish_color_valid_path --underline
set fish_pager_color_completion
set fish_pager_color_description yellow
set fish_pager_color_prefix white --bold --underline
set fish_pager_color_progress brwhite --background=cyan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment