Last active
May 19, 2020 19:29
-
-
Save fcaldera/589ed82b0a7418a05dedd6e43e736a71 to your computer and use it in GitHub Desktop.
Change fish colors script
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
set -U fish_color_autosuggestion brblack | |
set -U fish_color_cancel -r | |
set -U fish_color_command brgreen | |
set -U fish_color_comment brmagenta | |
set -U fish_color_cwd green | |
set -U fish_color_cwd_root red | |
set -U fish_color_end brmagenta | |
set -U fish_color_error brred | |
set -U fish_color_escape brcyan | |
set -U fish_color_history_current --bold | |
set -U fish_color_host normal | |
set -U fish_color_match --background=brblue | |
set -U fish_color_normal normal | |
set -U fish_color_operator cyan | |
set -U fish_color_param brblue | |
set -U fish_color_quote yellow | |
set -U fish_color_redirection bryellow | |
set -U fish_color_search_match -r | |
set -U fish_color_selection 'white' '--bold' '--background=brblack' | |
set -U fish_color_status red | |
set -U fish_color_user brgreen | |
set -U fish_color_valid_path --underline | |
set -U fish_pager_color_completion normal | |
set -U fish_pager_color_description yellow | |
set -U fish_pager_color_prefix 'normal' '--bold' '--underline' | |
set -U 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