From 9c1b7e2e4547992228e38d9027c212b3017f648f Mon Sep 17 00:00:00 2001 From: Ilan Cosman Date: Fri, 26 Jun 2020 15:38:43 -0700 Subject: [PATCH] Update pure config --- tide_theme/configure/configs/pure.fish | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/tide_theme/configure/configs/pure.fish b/tide_theme/configure/configs/pure.fish index 23bbe67..de28445 100644 --- a/tide_theme/configure/configs/pure.fish +++ b/tide_theme/configure/configs/pure.fish @@ -4,17 +4,28 @@ set -l tideColorDarkerGreen 5FAF00 # ---------------General Theme Variables--------------- _set fake_tide_newline 'true' +# ------------Left Prompt------------ +_set fake_tide_left_prompt_items 'pwd' 'git_prompt' 'cmd_duration' 'newline' 'prompt_char' +_set fake_tide_left_prompt_item_separator_same_color ' ' +_set fake_tide_left_prompt_item_separator_diff_color ' ' +_set fake_tide_left_prompt_pad_separators false +_set fake_tide_left_prompt_prefix '' +# ------------Right Prompt------------ +_set fake_tide_right_prompt_items +_set fake_tide_right_prompt_item_separator_same_color ' ' +_set fake_tide_right_prompt_item_separator_diff_color ' ' +_set fake_tide_right_prompt_pad_separators false +_set fake_tide_right_prompt_suffix '' # ---------Prompt Connection--------- _set fake_tide_prompt_connection_color 6C6C6C _set fake_tide_prompt_connection_icon ' ' # --------------------Prompt Items-------------------- -_set fake_tide_left_prompt_items 'pwd' 'git_prompt' 'cmd_duration' 'newline' 'prompt_char' -_set fake_tide_right_prompt_items # ------------Prompt Char------------ _set fake_tide_prompt_char_success_color magenta _set fake_tide_prompt_char_failure_color red _set fake_tide_prompt_char_icon '❯' +_set fake_tide_prompt_char_bg_color normal # ----------------Pwd---------------- _set fake_tide_pwd_truncate_margin 10 _set fake_tide_pwd_unwritable_icon @@ -23,10 +34,12 @@ _set fake_tide_pwd_anchors _set fake_tide_pwd_color_anchors $_tide_color_light_blue _set fake_tide_pwd_color_dirs blue _set fake_tide_pwd_color_truncated_dirs 8787AF +_set fake_tide_pwd_bg_color normal # ------------Git prompt------------ _set fake___fish_git_prompt_showupstream true _set fake___fish_git_prompt_showdirtystate true _set fake___fish_git_prompt_showstashstate true +_set fake_tide_git_prompt_bg_color normal # -------Symbols------- _set fake___fish_git_prompt_char_stateseparator '' _set fake___fish_git_prompt_char_upstream_equal '' @@ -46,20 +59,25 @@ _set fake_tide_status_success_icon '✔' _set fake_tide_status_success_color $tideColorDarkerGreen _set fake_tide_status_failure_icon '✘' _set fake_tide_status_failure_color D70000 +_set fake_tide_status_bg_color normal # -----------Cmd_Duration----------- _set fake_tide_cmd_duration_color yellow _set fake_tide_cmd_duration_decimals 0 _set fake_tide_cmd_duration_threshold 3000 +_set fake_tide_cmd_duration_bg_color normal # --------------Context-------------- _set fake_tide_context_ssh_color D7AF87 _set fake_tide_context_root_color $tideColorGold +_set fake_tide_context_bg_color normal # ---------------Jobs--------------- _set fake_tide_jobs_icon '' # Gear _set fake_tide_jobs_color $tideColorDarkerGreen +_set fake_tide_jobs_bg_color normal # ---------------Virtual_Env--------------- _set fake_tide_virtual_env_color 00AFAF _set fake_tide_virtual_env_display 'projectName' _set fake_tide_virtual_env_icon '' # ---------------Time--------------- _set fake_tide_time_color 6C6C6C -_set fake_tide_time_format '%T' \ No newline at end of file +_set fake_tide_time_format '%T' +_set fake_tide_time_bg_color normal \ No newline at end of file