modules/theme: update fish colors
This commit is contained in:
parent
d0b4e758b9
commit
3cbde4886f
1 changed files with 32 additions and 15 deletions
|
@ -212,21 +212,38 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
fish.interactiveShellInit = ''
|
fish.interactiveShellInit = ''
|
||||||
set emphasized_text brcyan # base1
|
set fish_cursor_default block blink
|
||||||
set normal_text brblue # base0
|
set fish_cursor_insert line blink
|
||||||
set secondary_text brgreen # base01
|
set fish_cursor_replace_one underscore blink
|
||||||
set background_light black # base02
|
set fish_cursor_visual block
|
||||||
set background brblack # base03
|
|
||||||
set -g fish_color_quote cyan # color of commands
|
set -x fish_color_autosuggestion brblack
|
||||||
set -g fish_color_redirection brmagenta # color of IO redirections
|
set -x fish_color_cancel -r
|
||||||
set -g fish_color_end blue # color of process separators like ';' and '&'
|
set -x fish_color_command brgreen
|
||||||
set -g fish_color_error red # color of potential errors
|
set -x fish_color_comment brmagenta
|
||||||
set -g fish_color_match --reverse # color of highlighted matching parenthesis
|
set -x fish_color_cwd green
|
||||||
set -g fish_color_search_match --background=yellow
|
set -x fish_color_cwd_root red
|
||||||
set -g fish_color_selection --reverse # color of selected text (vi mode)
|
set -x fish_color_end brmagenta
|
||||||
set -g fish_color_operator green # color of parameter expansion operators like '*' and '~'
|
set -x fish_color_error brred
|
||||||
set -g fish_color_escape red # color of character escapes like '\n' and and '\x70'
|
set -x fish_color_escape brcyan
|
||||||
set -g fish_color_cancel red # color of the '^C' indicator on a canceled command
|
set -x fish_color_history_current --bold
|
||||||
|
set -x fish_color_host normal
|
||||||
|
set -x fish_color_host_remote yellow
|
||||||
|
set -x fish_color_match --background=brblue
|
||||||
|
set -x fish_color_normal normal
|
||||||
|
set -x fish_color_operator cyan
|
||||||
|
set -x fish_color_param brblue
|
||||||
|
set -x fish_color_quote yellow
|
||||||
|
set -x fish_color_redirection bryellow
|
||||||
|
set -x fish_color_search_match 'bryellow' '--background=brblack'
|
||||||
|
set -x fish_color_selection 'white' '--bold' '--background=brblack'
|
||||||
|
set -x fish_color_status red
|
||||||
|
set -x fish_color_user brgreen
|
||||||
|
set -x fish_color_valid_path --underline
|
||||||
|
set -x fish_pager_color_completion normal
|
||||||
|
set -x fish_pager_color_description yellow
|
||||||
|
set -x fish_pager_color_prefix 'white' '--bold' '--underline'
|
||||||
|
set -x fish_pager_color_progress 'brwhite' '--background=cyan'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
starship.settings = {
|
starship.settings = {
|
||||||
|
|
Loading…
Reference in a new issue