diff options
author | noa@gaiwan.org | 2024-03-23 09:35:43 +0000 |
---|---|---|
committer | noa@gaiwan.org | 2024-03-23 09:35:43 +0000 |
commit | 5d5248521e5feb259db2ad49b1f09dd7142992e7 (patch) | |
tree | dbd1cae8df2949ba18332feee6918829cde4991b /fish | |
parent | f0fecfcce26cf829f53559b960d6a219c697edd6 (diff) |
Update fish colour theme to avoid more colour
Diffstat (limited to 'fish')
-rw-r--r-- | fish/config.fish | 49 |
1 files changed, 32 insertions, 17 deletions
diff --git a/fish/config.fish b/fish/config.fish index 2f110c6..046e1ff 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -6,29 +6,44 @@ set fish_greeting fish_add_path $HOME/Scripts +set -Ux NO_COLOR + # unset most of the colours set fish_color_normal normal -set fish_color_autosuggestion --underline -set fish_color_cancel --reverse set fish_color_command -set fish_color_comment -set fish_color_cwd -set fish_color_cwd_root +set fish_color_quote +set fish_color_redirection set fish_color_end set fish_color_error +set fish_color_param +set fish_color_comment +set fish_color_match +set fish_color_selection --reverse +set fish_color_search_match --reverse +set fish_color_history_current +set fish_color_operator set fish_color_escape -set fish_color_history_current --underline -set fish_color_host +set fish_color_cwd # normal +set fish_color_cwd_root # normal +set fish_color_valid_path +set fish_color_autosuggestion --underline +set fish_color_user # normal +set fish_color_host # normal +set fish_color_cancel --reverse +set fish_pager_color_prefix --underline +set fish_pager_color_progress red +set fish_pager_color_completion # normal +set fish_pager_color_description +set fish_pager_color_selected_background --reverse set fish_color_host_remote -set fish_color_keyword -set fish_color_match --background=red -set fish_color_operator +set fish_pager_color_selected_description +set fish_pager_color_selected_prefix set fish_color_option -set fish_color_param -set fish_color_quote -set fish_color_redirection -set fish_color_search_match --reverse -set fish_color_selection --background=green +set fish_pager_color_secondary_background +set fish_color_keyword +set fish_pager_color_background +set fish_pager_color_secondary_description +set fish_pager_color_secondary_prefix +set fish_pager_color_selected_completion +set fish_pager_color_secondary_completion set fish_color_status -set fish_color_user -set fish_color_valid_path |