-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathset_colors_default.fish
28 lines (28 loc) · 1.04 KB
/
set_colors_default.fish
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
function set_colors_default
echo "Setting colors to default"
set -U fish_color_normal normal
set -U fish_color_command --bold
set -U fish_color_param cyan
set -U fish_color_redirection brblue
set -U fish_color_comment red
set -U fish_color_error brred
set -U fish_color_escape bryellow --bold
set -U fish_color_operator bryellow
set -U fish_color_end brmagenta
set -U fish_color_quote yellow
set -U fish_color_autosuggestion 555 brblack
set -U fish_color_user brgreen
set -U fish_color_host normal
set -U fish_color_valid_path --underline
set -U fish_color_cwd green
set -U fish_color_cwd_root red
set -U fish_color_match --background=brblue
set -U fish_color_search_match bryellow --background=brblack
set -U fish_color_selection white --bold --background=brblack
set -U fish_color_cancel -r
set -U fish_pager_color_prefix white --bold --underline
set -U fish_pager_color_completion
set -U fish_pager_color_description B3A06D yellow
set -U fish_pager_color_progress brwhite --background=cyan
set -U fish_color_history_current --bold
end