Last active
July 31, 2020 16:42
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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