@heyitsiveen/dotfiles 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/dist/index.mjs +10 -7
  2. package/dotfiles/macos/.config/fish/completions/fisher.fish +7 -0
  3. package/dotfiles/macos/.config/fish/completions/tide.fish +13 -0
  4. package/dotfiles/macos/.config/fish/conf.d/_tide_init.fish +44 -0
  5. package/dotfiles/macos/.config/fish/fish_plugins +2 -0
  6. package/dotfiles/macos/.config/fish/functions/_tide_1_line_prompt.fish +19 -0
  7. package/dotfiles/macos/.config/fish/functions/_tide_2_line_prompt.fish +31 -0
  8. package/dotfiles/macos/.config/fish/functions/_tide_cache_variables.fish +17 -0
  9. package/dotfiles/macos/.config/fish/functions/_tide_detect_os.fish +76 -0
  10. package/dotfiles/macos/.config/fish/functions/_tide_find_and_remove.fish +3 -0
  11. package/dotfiles/macos/.config/fish/functions/_tide_fish_colorize.fish +7 -0
  12. package/dotfiles/macos/.config/fish/functions/_tide_item_aws.fish +11 -0
  13. package/dotfiles/macos/.config/fish/functions/_tide_item_bun.fish +6 -0
  14. package/dotfiles/macos/.config/fish/functions/_tide_item_character.fish +17 -0
  15. package/dotfiles/macos/.config/fish/functions/_tide_item_cmd_duration.fish +12 -0
  16. package/dotfiles/macos/.config/fish/functions/_tide_item_context.fish +14 -0
  17. package/dotfiles/macos/.config/fish/functions/_tide_item_crystal.fish +6 -0
  18. package/dotfiles/macos/.config/fish/functions/_tide_item_direnv.fish +7 -0
  19. package/dotfiles/macos/.config/fish/functions/_tide_item_distrobox.fish +4 -0
  20. package/dotfiles/macos/.config/fish/functions/_tide_item_docker.fish +5 -0
  21. package/dotfiles/macos/.config/fish/functions/_tide_item_elixir.fish +4 -0
  22. package/dotfiles/macos/.config/fish/functions/_tide_item_gcloud.fish +8 -0
  23. package/dotfiles/macos/.config/fish/functions/_tide_item_git.fish +72 -0
  24. package/dotfiles/macos/.config/fish/functions/_tide_item_go.fish +6 -0
  25. package/dotfiles/macos/.config/fish/functions/_tide_item_java.fish +6 -0
  26. package/dotfiles/macos/.config/fish/functions/_tide_item_jobs.fish +7 -0
  27. package/dotfiles/macos/.config/fish/functions/_tide_item_kubectl.fish +4 -0
  28. package/dotfiles/macos/.config/fish/functions/_tide_item_nix_shell.fish +3 -0
  29. package/dotfiles/macos/.config/fish/functions/_tide_item_node.fish +6 -0
  30. package/dotfiles/macos/.config/fish/functions/_tide_item_os.fish +3 -0
  31. package/dotfiles/macos/.config/fish/functions/_tide_item_php.fish +6 -0
  32. package/dotfiles/macos/.config/fish/functions/_tide_item_private_mode.fish +3 -0
  33. package/dotfiles/macos/.config/fish/functions/_tide_item_pulumi.fish +19 -0
  34. package/dotfiles/macos/.config/fish/functions/_tide_item_python.fish +27 -0
  35. package/dotfiles/macos/.config/fish/functions/_tide_item_ruby.fish +6 -0
  36. package/dotfiles/macos/.config/fish/functions/_tide_item_rustc.fish +6 -0
  37. package/dotfiles/macos/.config/fish/functions/_tide_item_shlvl.fish +4 -0
  38. package/dotfiles/macos/.config/fish/functions/_tide_item_status.fish +15 -0
  39. package/dotfiles/macos/.config/fish/functions/_tide_item_terraform.fish +5 -0
  40. package/dotfiles/macos/.config/fish/functions/_tide_item_time.fish +3 -0
  41. package/dotfiles/macos/.config/fish/functions/_tide_item_toolbox.fish +4 -0
  42. package/dotfiles/macos/.config/fish/functions/_tide_item_vi_mode.fish +16 -0
  43. package/dotfiles/macos/.config/fish/functions/_tide_item_zig.fish +6 -0
  44. package/dotfiles/macos/.config/fish/functions/_tide_parent_dirs.fish +10 -0
  45. package/dotfiles/macos/.config/fish/functions/_tide_print_item.fish +22 -0
  46. package/dotfiles/macos/.config/fish/functions/_tide_pwd.fish +42 -0
  47. package/dotfiles/macos/.config/fish/functions/_tide_remove_unusable_items.fish +25 -0
  48. package/dotfiles/macos/.config/fish/functions/_tide_sub_bug-report.fish +73 -0
  49. package/dotfiles/macos/.config/fish/functions/_tide_sub_configure.fish +156 -0
  50. package/dotfiles/macos/.config/fish/functions/_tide_sub_reload.fish +3 -0
  51. package/dotfiles/macos/.config/fish/functions/fish_greeting.fish +1 -4
  52. package/dotfiles/macos/.config/fish/functions/fish_mode_prompt.fish +1 -0
  53. package/dotfiles/macos/.config/fish/functions/fish_prompt.fish +170 -0
  54. package/dotfiles/macos/.config/fish/functions/fisher.fish +251 -0
  55. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/all/finish.fish +46 -0
  56. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/all/icons.fish +33 -0
  57. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/all/prompt_colors.fish +26 -0
  58. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/all/prompt_connection.fish +31 -0
  59. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/all/prompt_connection_andor_frame_color.fish +40 -0
  60. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/all/prompt_spacing.fish +22 -0
  61. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/all/show_time.fish +33 -0
  62. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/all/style.fish +36 -0
  63. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/all/transient.fish +22 -0
  64. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/classic/classic_prompt_color.fish +38 -0
  65. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/classic/classic_prompt_separators.fish +40 -0
  66. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/lean/lean_prompt_height.fish +26 -0
  67. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/powerline/powerline_prompt_heads.fish +32 -0
  68. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/powerline/powerline_prompt_style.fish +51 -0
  69. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/powerline/powerline_prompt_tails.fish +40 -0
  70. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/powerline/powerline_right_prompt_frame.fish +20 -0
  71. package/dotfiles/macos/.config/fish/functions/tide/configure/choices/rainbow/rainbow_prompt_separators.fish +40 -0
  72. package/dotfiles/macos/.config/fish/functions/tide/configure/configs/classic.fish +118 -0
  73. package/dotfiles/macos/.config/fish/functions/tide/configure/configs/classic_16color.fish +91 -0
  74. package/dotfiles/macos/.config/fish/functions/tide/configure/configs/lean.fish +118 -0
  75. package/dotfiles/macos/.config/fish/functions/tide/configure/configs/lean_16color.fish +91 -0
  76. package/dotfiles/macos/.config/fish/functions/tide/configure/configs/rainbow.fish +118 -0
  77. package/dotfiles/macos/.config/fish/functions/tide/configure/configs/rainbow_16color.fish +95 -0
  78. package/dotfiles/macos/.config/fish/functions/tide/configure/functions/_fake_tide_cache_variables.fish +41 -0
  79. package/dotfiles/macos/.config/fish/functions/tide/configure/functions/_fake_tide_item_character.fish +8 -0
  80. package/dotfiles/macos/.config/fish/functions/tide/configure/functions/_fake_tide_item_cmd_duration.fish +3 -0
  81. package/dotfiles/macos/.config/fish/functions/tide/configure/functions/_fake_tide_item_git.fish +3 -0
  82. package/dotfiles/macos/.config/fish/functions/tide/configure/functions/_fake_tide_item_newline.fish +5 -0
  83. package/dotfiles/macos/.config/fish/functions/tide/configure/functions/_fake_tide_item_os.fish +3 -0
  84. package/dotfiles/macos/.config/fish/functions/tide/configure/functions/_fake_tide_item_time.fish +3 -0
  85. package/dotfiles/macos/.config/fish/functions/tide/configure/functions/_fake_tide_print_item.fish +22 -0
  86. package/dotfiles/macos/.config/fish/functions/tide/configure/functions/_fake_tide_prompt.fish +42 -0
  87. package/dotfiles/macos/.config/fish/functions/tide/configure/functions/_fake_tide_pwd.fish +11 -0
  88. package/dotfiles/macos/.config/fish/functions/tide/configure/icons.fish +41 -0
  89. package/dotfiles/macos/.config/fish/functions/tide.fish +28 -0
  90. package/dotfiles/windows/powershell/Profile.ps1 +0 -4
  91. package/dotfiles/windows/powershell/functions/Switch-PromptPalette.ps1 +1 -1
  92. package/dotfiles/windows/powershell/modules/prompt.ps1 +2 -2
  93. package/package.json +1 -1
@@ -0,0 +1,32 @@
1
+ function powerline_prompt_heads
2
+ _tide_title 'Prompt Heads'
3
+
4
+ _tide_option 1 Sharp
5
+ set -g fake_tide_left_prompt_suffix 
6
+ set -g fake_tide_right_prompt_prefix 
7
+ _tide_display_prompt
8
+
9
+ _tide_option 2 Slanted
10
+ set -g fake_tide_left_prompt_suffix 
11
+ set -g fake_tide_right_prompt_prefix 
12
+ _tide_display_prompt
13
+
14
+ _tide_option 3 Round
15
+ set -g fake_tide_left_prompt_suffix 
16
+ set -g fake_tide_right_prompt_prefix 
17
+ _tide_display_prompt
18
+
19
+ _tide_menu (status function)
20
+ switch $_tide_selected_option
21
+ case Sharp
22
+ set -g fake_tide_left_prompt_suffix 
23
+ set -g fake_tide_right_prompt_prefix 
24
+ case Slanted
25
+ set -g fake_tide_left_prompt_suffix 
26
+ set -g fake_tide_right_prompt_prefix 
27
+ case Round
28
+ set -g fake_tide_left_prompt_suffix 
29
+ set -g fake_tide_right_prompt_prefix 
30
+ end
31
+ _next_choice powerline/powerline_prompt_tails
32
+ end
@@ -0,0 +1,51 @@
1
+ function powerline_prompt_style
2
+ _tide_title 'Powerline Prompt Style'
3
+
4
+ _tide_option 1 'One line'
5
+ _tide_find_and_remove newline fake_tide_left_prompt_items
6
+ _tide_find_and_remove character fake_tide_left_prompt_items
7
+ set fake_tide_left_prompt_frame_enabled false
8
+ set fake_tide_right_prompt_frame_enabled false
9
+ _tide_display_prompt
10
+
11
+ set -a fake_tide_left_prompt_items newline
12
+
13
+ _tide_option 2 'Two lines, character'
14
+ set -a fake_tide_left_prompt_items character
15
+ set fake_tide_left_prompt_frame_enabled false
16
+ set fake_tide_right_prompt_frame_enabled false
17
+ _tide_display_prompt
18
+
19
+ _tide_option 3 'Two lines, frame'
20
+ _tide_find_and_remove character fake_tide_left_prompt_items
21
+ set fake_tide_left_prompt_frame_enabled true
22
+ set fake_tide_right_prompt_frame_enabled true
23
+ _tide_display_prompt
24
+
25
+ _tide_option 4 'Two lines, character and frame'
26
+ set -a fake_tide_left_prompt_items character
27
+ set fake_tide_left_prompt_frame_enabled true
28
+ set fake_tide_right_prompt_frame_enabled true
29
+ _tide_display_prompt
30
+
31
+ _tide_menu (status function)
32
+ switch $_tide_selected_option
33
+ case 'One line'
34
+ _tide_find_and_remove newline fake_tide_left_prompt_items
35
+ _tide_find_and_remove character fake_tide_left_prompt_items
36
+ set fake_tide_left_prompt_frame_enabled false
37
+ set fake_tide_right_prompt_frame_enabled false
38
+ _next_choice all/prompt_connection_andor_frame_color
39
+ case 'Two lines, character'
40
+ set fake_tide_left_prompt_frame_enabled false
41
+ set fake_tide_right_prompt_frame_enabled false
42
+ _next_choice all/prompt_connection
43
+ case 'Two lines, frame'
44
+ _tide_find_and_remove character fake_tide_left_prompt_items
45
+ set fake_tide_left_prompt_frame_enabled true
46
+ set fake_tide_right_prompt_frame_enabled true
47
+ _next_choice all/prompt_connection
48
+ case 'Two lines, character and frame'
49
+ _next_choice all/prompt_connection
50
+ end
51
+ end
@@ -0,0 +1,40 @@
1
+ function powerline_prompt_tails
2
+ _tide_title 'Prompt Tails'
3
+
4
+ _tide_option 1 Flat
5
+ set -g fake_tide_left_prompt_prefix ''
6
+ set -g fake_tide_right_prompt_suffix ''
7
+ _tide_display_prompt
8
+
9
+ _tide_option 2 Sharp
10
+ set -g fake_tide_left_prompt_prefix 
11
+ set -g fake_tide_right_prompt_suffix 
12
+ _tide_display_prompt
13
+
14
+ _tide_option 3 Slanted
15
+ set -g fake_tide_left_prompt_prefix 
16
+ set -g fake_tide_right_prompt_suffix 
17
+ _tide_display_prompt
18
+
19
+ _tide_option 4 Round
20
+ set -g fake_tide_left_prompt_prefix 
21
+ set -g fake_tide_right_prompt_suffix 
22
+ _tide_display_prompt
23
+
24
+ _tide_menu (status function)
25
+ switch $_tide_selected_option
26
+ case Flat
27
+ set -g fake_tide_left_prompt_prefix ''
28
+ set -g fake_tide_right_prompt_suffix ''
29
+ case Sharp
30
+ set -g fake_tide_left_prompt_prefix 
31
+ set -g fake_tide_right_prompt_suffix 
32
+ case Slanted
33
+ set -g fake_tide_left_prompt_prefix 
34
+ set -g fake_tide_right_prompt_suffix 
35
+ case Round
36
+ set -g fake_tide_left_prompt_prefix 
37
+ set -g fake_tide_right_prompt_suffix 
38
+ end
39
+ _next_choice powerline/powerline_prompt_style
40
+ end
@@ -0,0 +1,20 @@
1
+ function powerline_right_prompt_frame
2
+ _tide_title 'Right Prompt Frame'
3
+
4
+ _tide_option 1 No
5
+ set fake_tide_right_prompt_frame_enabled false
6
+ _tide_display_prompt
7
+
8
+ _tide_option 2 Yes
9
+ set fake_tide_right_prompt_frame_enabled true
10
+ _tide_display_prompt
11
+
12
+ _tide_menu (status function)
13
+ switch $_tide_selected_option
14
+ case No
15
+ set fake_tide_right_prompt_frame_enabled false
16
+ case Yes
17
+ set fake_tide_right_prompt_frame_enabled true
18
+ end
19
+ _next_choice all/prompt_connection_andor_frame_color
20
+ end
@@ -0,0 +1,40 @@
1
+ function rainbow_prompt_separators
2
+ _tide_title 'Prompt Separators'
3
+
4
+ _tide_option 1 Angled
5
+ set -g fake_tide_left_prompt_separator_diff_color 
6
+ set -g fake_tide_right_prompt_separator_diff_color 
7
+ _tide_display_prompt
8
+
9
+ _tide_option 2 Vertical
10
+ set -g fake_tide_left_prompt_separator_diff_color ''
11
+ set -g fake_tide_right_prompt_separator_diff_color ''
12
+ _tide_display_prompt
13
+
14
+ _tide_option 3 Slanted
15
+ set -g fake_tide_left_prompt_separator_diff_color ''
16
+ set -g fake_tide_right_prompt_separator_diff_color ''
17
+ _tide_display_prompt
18
+
19
+ _tide_option 4 Round
20
+ set -g fake_tide_left_prompt_separator_diff_color ''
21
+ set -g fake_tide_right_prompt_separator_diff_color ''
22
+ _tide_display_prompt
23
+
24
+ _tide_menu (status function)
25
+ switch $_tide_selected_option
26
+ case Angled
27
+ set -g fake_tide_left_prompt_separator_diff_color 
28
+ set -g fake_tide_right_prompt_separator_diff_color 
29
+ case Vertical
30
+ set -g fake_tide_left_prompt_separator_diff_color ''
31
+ set -g fake_tide_right_prompt_separator_diff_color ''
32
+ case Slanted
33
+ set -g fake_tide_left_prompt_separator_diff_color ''
34
+ set -g fake_tide_right_prompt_separator_diff_color ''
35
+ case Round
36
+ set -g fake_tide_left_prompt_separator_diff_color ''
37
+ set -g fake_tide_right_prompt_separator_diff_color ''
38
+ end
39
+ _next_choice powerline/powerline_prompt_heads
40
+ end
@@ -0,0 +1,118 @@
1
+ tide_aws_bg_color 444444
2
+ tide_aws_color FF9900
3
+ tide_bun_bg_color 14151A
4
+ tide_bun_color FBF0DF
5
+ tide_character_color $_tide_color_green
6
+ tide_character_color_failure FF0000
7
+ tide_cmd_duration_bg_color 444444
8
+ tide_cmd_duration_color 87875F
9
+ tide_cmd_duration_decimals 0
10
+ tide_cmd_duration_threshold 3000
11
+ tide_context_always_display false
12
+ tide_context_bg_color 444444
13
+ tide_context_color_default D7AF87
14
+ tide_context_color_root $_tide_color_gold
15
+ tide_context_color_ssh D7AF87
16
+ tide_context_hostname_parts 1
17
+ tide_crystal_bg_color 444444
18
+ tide_crystal_color FFFFFF
19
+ tide_direnv_bg_color 444444
20
+ tide_direnv_bg_color_denied 444444
21
+ tide_direnv_color $_tide_color_gold
22
+ tide_direnv_color_denied FF0000
23
+ tide_distrobox_bg_color 444444
24
+ tide_distrobox_color FF00FF
25
+ tide_docker_bg_color 444444
26
+ tide_docker_color 2496ED
27
+ tide_docker_default_contexts default colima
28
+ tide_elixir_bg_color 444444
29
+ tide_elixir_color 4E2A8E
30
+ tide_gcloud_bg_color 444444
31
+ tide_gcloud_color 4285F4
32
+ tide_git_bg_color 444444
33
+ tide_git_bg_color_unstable 444444
34
+ tide_git_bg_color_urgent 444444
35
+ tide_git_color_branch $_tide_color_green
36
+ tide_git_color_conflicted FF0000
37
+ tide_git_color_dirty $_tide_color_gold
38
+ tide_git_color_operation FF0000
39
+ tide_git_color_staged $_tide_color_gold
40
+ tide_git_color_stash $_tide_color_green
41
+ tide_git_color_untracked $_tide_color_light_blue
42
+ tide_git_color_upstream $_tide_color_green
43
+ tide_git_truncation_length 24
44
+ tide_git_truncation_strategy
45
+ tide_go_bg_color 444444
46
+ tide_go_color 00ACD7
47
+ tide_java_bg_color 444444
48
+ tide_java_color ED8B00
49
+ tide_jobs_bg_color 444444
50
+ tide_jobs_color $_tide_color_dark_green
51
+ tide_jobs_number_threshold 1000
52
+ tide_kubectl_bg_color 444444
53
+ tide_kubectl_color 326CE5
54
+ tide_left_prompt_frame_enabled true
55
+ tide_left_prompt_items pwd git newline
56
+ tide_left_prompt_prefix ''
57
+ tide_left_prompt_separator_diff_color 
58
+ tide_left_prompt_separator_same_color 
59
+ tide_left_prompt_suffix 
60
+ tide_nix_shell_bg_color 444444
61
+ tide_nix_shell_color 7EBAE4
62
+ tide_node_bg_color 444444
63
+ tide_node_color 44883E
64
+ tide_os_bg_color 444444
65
+ tide_os_color EEEEEE
66
+ tide_php_bg_color 444444
67
+ tide_php_color 617CBE
68
+ tide_private_mode_bg_color 444444
69
+ tide_private_mode_color FFFFFF
70
+ tide_prompt_add_newline_before true
71
+ tide_prompt_color_frame_and_connection 6C6C6C
72
+ tide_prompt_color_separator_same_color 949494
73
+ tide_prompt_min_cols 34
74
+ tide_prompt_pad_items true
75
+ tide_prompt_transient_enabled false
76
+ tide_pulumi_bg_color 444444
77
+ tide_pulumi_color F7BF2A
78
+ tide_pwd_bg_color 444444
79
+ tide_pwd_color_anchors $_tide_color_light_blue
80
+ tide_pwd_color_dirs $_tide_color_dark_blue
81
+ tide_pwd_color_truncated_dirs 8787AF
82
+ tide_pwd_markers .bzr .citc .git .hg .node-version .python-version .ruby-version .shorten_folder_marker .svn .terraform bun.lockb Cargo.toml composer.json CVS go.mod package.json build.zig
83
+ tide_python_bg_color 444444
84
+ tide_python_color 00AFAF
85
+ tide_right_prompt_frame_enabled true
86
+ tide_right_prompt_items status cmd_duration context jobs direnv bun node python rustc java php pulumi ruby go gcloud kubectl distrobox toolbox terraform aws nix_shell crystal elixir zig
87
+ tide_right_prompt_prefix 
88
+ tide_right_prompt_separator_diff_color 
89
+ tide_right_prompt_separator_same_color 
90
+ tide_right_prompt_suffix ''
91
+ tide_ruby_bg_color 444444
92
+ tide_ruby_color B31209
93
+ tide_rustc_bg_color 444444
94
+ tide_rustc_color F74C00
95
+ tide_shlvl_bg_color 444444
96
+ tide_shlvl_color d78700
97
+ tide_shlvl_threshold 1
98
+ tide_status_bg_color 444444
99
+ tide_status_bg_color_failure 444444
100
+ tide_status_color $_tide_color_dark_green
101
+ tide_status_color_failure D70000
102
+ tide_terraform_bg_color 444444
103
+ tide_terraform_color 844FBA
104
+ tide_time_bg_color 444444
105
+ tide_time_color 5F8787
106
+ tide_time_format %T
107
+ tide_toolbox_bg_color 444444
108
+ tide_toolbox_color 613583
109
+ tide_vi_mode_bg_color_default 444444
110
+ tide_vi_mode_bg_color_insert 444444
111
+ tide_vi_mode_bg_color_replace 444444
112
+ tide_vi_mode_bg_color_visual 444444
113
+ tide_vi_mode_color_default 949494
114
+ tide_vi_mode_color_insert 87AFAF
115
+ tide_vi_mode_color_replace 87AF87
116
+ tide_vi_mode_color_visual FF8700
117
+ tide_zig_bg_color 444444
118
+ tide_zig_color F7A41D
@@ -0,0 +1,91 @@
1
+ tide_aws_bg_color black
2
+ tide_aws_color yellow
3
+ tide_bun_bg_color black
4
+ tide_bun_color white
5
+ tide_character_color brgreen
6
+ tide_character_color_failure brred
7
+ tide_cmd_duration_bg_color black
8
+ tide_cmd_duration_color brblack
9
+ tide_context_bg_color black
10
+ tide_context_color_default yellow
11
+ tide_context_color_root bryellow
12
+ tide_context_color_ssh yellow
13
+ tide_crystal_bg_color black
14
+ tide_crystal_color brwhite
15
+ tide_direnv_bg_color black
16
+ tide_direnv_bg_color_denied black
17
+ tide_direnv_color bryellow
18
+ tide_direnv_color_denied brred
19
+ tide_distrobox_bg_color black
20
+ tide_distrobox_color brmagenta
21
+ tide_docker_bg_color black
22
+ tide_docker_color blue
23
+ tide_elixir_bg_color black
24
+ tide_elixir_color magenta
25
+ tide_gcloud_bg_color black
26
+ tide_gcloud_color blue
27
+ tide_git_bg_color black
28
+ tide_git_bg_color_unstable black
29
+ tide_git_bg_color_urgent black
30
+ tide_git_color_branch brgreen
31
+ tide_git_color_conflicted brred
32
+ tide_git_color_dirty bryellow
33
+ tide_git_color_operation brred
34
+ tide_git_color_staged bryellow
35
+ tide_git_color_stash brgreen
36
+ tide_git_color_untracked brblue
37
+ tide_git_color_upstream brgreen
38
+ tide_go_bg_color black
39
+ tide_go_color brcyan
40
+ tide_java_bg_color black
41
+ tide_java_color yellow
42
+ tide_jobs_bg_color black
43
+ tide_jobs_color green
44
+ tide_kubectl_bg_color black
45
+ tide_kubectl_color blue
46
+ tide_nix_shell_bg_color black
47
+ tide_nix_shell_color brblue
48
+ tide_node_bg_color black
49
+ tide_node_color green
50
+ tide_os_bg_color black
51
+ tide_os_color brwhite
52
+ tide_php_bg_color black
53
+ tide_php_color blue
54
+ tide_private_mode_bg_color black
55
+ tide_private_mode_color brwhite
56
+ tide_prompt_color_frame_and_connection brblack
57
+ tide_prompt_color_separator_same_color brblack
58
+ tide_pulumi_bg_color black
59
+ tide_pulumi_color yellow
60
+ tide_pwd_bg_color black
61
+ tide_pwd_color_anchors brcyan
62
+ tide_pwd_color_dirs cyan
63
+ tide_pwd_color_truncated_dirs magenta
64
+ tide_python_bg_color black
65
+ tide_python_color cyan
66
+ tide_ruby_bg_color black
67
+ tide_ruby_color red
68
+ tide_rustc_bg_color black
69
+ tide_rustc_color red
70
+ tide_shlvl_bg_color black
71
+ tide_shlvl_color yellow
72
+ tide_status_bg_color black
73
+ tide_status_bg_color_failure black
74
+ tide_status_color green
75
+ tide_status_color_failure red
76
+ tide_terraform_bg_color black
77
+ tide_terraform_color magenta
78
+ tide_time_bg_color black
79
+ tide_time_color brblack
80
+ tide_toolbox_bg_color black
81
+ tide_toolbox_color magenta
82
+ tide_vi_mode_bg_color_default black
83
+ tide_vi_mode_bg_color_insert black
84
+ tide_vi_mode_bg_color_replace black
85
+ tide_vi_mode_bg_color_visual black
86
+ tide_vi_mode_color_default white
87
+ tide_vi_mode_color_insert cyan
88
+ tide_vi_mode_color_replace green
89
+ tide_vi_mode_color_visual yellow
90
+ tide_zig_bg_color black
91
+ tide_zig_color yellow
@@ -0,0 +1,118 @@
1
+ tide_aws_bg_color normal
2
+ tide_aws_color FF9900
3
+ tide_bun_bg_color normal
4
+ tide_bun_color FBF0DF
5
+ tide_character_color $_tide_color_green
6
+ tide_character_color_failure FF0000
7
+ tide_cmd_duration_bg_color normal
8
+ tide_cmd_duration_color 87875F
9
+ tide_cmd_duration_decimals 0
10
+ tide_cmd_duration_threshold 3000
11
+ tide_context_always_display false
12
+ tide_context_bg_color normal
13
+ tide_context_color_default D7AF87
14
+ tide_context_color_root $_tide_color_gold
15
+ tide_context_color_ssh D7AF87
16
+ tide_context_hostname_parts 1
17
+ tide_crystal_bg_color normal
18
+ tide_crystal_color FFFFFF
19
+ tide_direnv_bg_color normal
20
+ tide_direnv_bg_color_denied normal
21
+ tide_direnv_color $_tide_color_gold
22
+ tide_direnv_color_denied FF0000
23
+ tide_distrobox_bg_color normal
24
+ tide_distrobox_color FF00FF
25
+ tide_docker_bg_color normal
26
+ tide_docker_color 2496ED
27
+ tide_docker_default_contexts default colima
28
+ tide_elixir_bg_color normal
29
+ tide_elixir_color 4E2A8E
30
+ tide_gcloud_bg_color normal
31
+ tide_gcloud_color 4285F4
32
+ tide_git_bg_color normal
33
+ tide_git_bg_color_unstable normal
34
+ tide_git_bg_color_urgent normal
35
+ tide_git_color_branch $_tide_color_green
36
+ tide_git_color_conflicted FF0000
37
+ tide_git_color_dirty $_tide_color_gold
38
+ tide_git_color_operation FF0000
39
+ tide_git_color_staged $_tide_color_gold
40
+ tide_git_color_stash $_tide_color_green
41
+ tide_git_color_untracked $_tide_color_light_blue
42
+ tide_git_color_upstream $_tide_color_green
43
+ tide_git_truncation_length 24
44
+ tide_git_truncation_strategy
45
+ tide_go_bg_color normal
46
+ tide_go_color 00ACD7
47
+ tide_java_bg_color normal
48
+ tide_java_color ED8B00
49
+ tide_jobs_bg_color normal
50
+ tide_jobs_color $_tide_color_dark_green
51
+ tide_jobs_number_threshold 1000
52
+ tide_kubectl_bg_color normal
53
+ tide_kubectl_color 326CE5
54
+ tide_left_prompt_frame_enabled false
55
+ tide_left_prompt_items pwd git newline character
56
+ tide_left_prompt_prefix ''
57
+ tide_left_prompt_separator_diff_color ' '
58
+ tide_left_prompt_separator_same_color ' '
59
+ tide_left_prompt_suffix ' '
60
+ tide_nix_shell_bg_color normal
61
+ tide_nix_shell_color 7EBAE4
62
+ tide_node_bg_color normal
63
+ tide_node_color 44883E
64
+ tide_os_bg_color normal
65
+ tide_os_color normal
66
+ tide_php_bg_color normal
67
+ tide_php_color 617CBE
68
+ tide_private_mode_bg_color normal
69
+ tide_private_mode_color FFFFFF
70
+ tide_prompt_add_newline_before true
71
+ tide_prompt_color_frame_and_connection 6C6C6C
72
+ tide_prompt_color_separator_same_color 949494
73
+ tide_prompt_min_cols 34
74
+ tide_prompt_pad_items false
75
+ tide_prompt_transient_enabled false
76
+ tide_pulumi_bg_color normal
77
+ tide_pulumi_color F7BF2A
78
+ tide_pwd_bg_color normal
79
+ tide_pwd_color_anchors $_tide_color_light_blue
80
+ tide_pwd_color_dirs $_tide_color_dark_blue
81
+ tide_pwd_color_truncated_dirs 8787AF
82
+ tide_pwd_markers .bzr .citc .git .hg .node-version .python-version .ruby-version .shorten_folder_marker .svn .terraform bun.lockb Cargo.toml composer.json CVS go.mod package.json build.zig
83
+ tide_python_bg_color normal
84
+ tide_python_color 00AFAF
85
+ tide_right_prompt_frame_enabled false
86
+ tide_right_prompt_items status cmd_duration context jobs direnv bun node python rustc java php pulumi ruby go gcloud kubectl distrobox toolbox terraform aws nix_shell crystal elixir zig
87
+ tide_right_prompt_prefix ' '
88
+ tide_right_prompt_separator_diff_color ' '
89
+ tide_right_prompt_separator_same_color ' '
90
+ tide_right_prompt_suffix ''
91
+ tide_ruby_bg_color normal
92
+ tide_ruby_color B31209
93
+ tide_rustc_bg_color normal
94
+ tide_rustc_color F74C00
95
+ tide_shlvl_bg_color normal
96
+ tide_shlvl_color d78700
97
+ tide_shlvl_threshold 1
98
+ tide_status_bg_color normal
99
+ tide_status_bg_color_failure normal
100
+ tide_status_color $_tide_color_dark_green
101
+ tide_status_color_failure D70000
102
+ tide_terraform_bg_color normal
103
+ tide_terraform_color 844FBA
104
+ tide_time_bg_color normal
105
+ tide_time_color 5F8787
106
+ tide_time_format %T
107
+ tide_toolbox_bg_color normal
108
+ tide_toolbox_color 613583
109
+ tide_vi_mode_bg_color_default normal
110
+ tide_vi_mode_bg_color_insert normal
111
+ tide_vi_mode_bg_color_replace normal
112
+ tide_vi_mode_bg_color_visual normal
113
+ tide_vi_mode_color_default 949494
114
+ tide_vi_mode_color_insert 87AFAF
115
+ tide_vi_mode_color_replace 87AF87
116
+ tide_vi_mode_color_visual FF8700
117
+ tide_zig_bg_color normal
118
+ tide_zig_color F7A41D
@@ -0,0 +1,91 @@
1
+ tide_aws_bg_color normal
2
+ tide_aws_color yellow
3
+ tide_bun_bg_color normal
4
+ tide_bun_color white
5
+ tide_character_color brgreen
6
+ tide_character_color_failure brred
7
+ tide_cmd_duration_bg_color normal
8
+ tide_cmd_duration_color brblack
9
+ tide_context_bg_color normal
10
+ tide_context_color_default yellow
11
+ tide_context_color_root bryellow
12
+ tide_context_color_ssh yellow
13
+ tide_crystal_bg_color normal
14
+ tide_crystal_color brwhite
15
+ tide_direnv_bg_color normal
16
+ tide_direnv_bg_color_denied normal
17
+ tide_direnv_color bryellow
18
+ tide_direnv_color_denied brred
19
+ tide_distrobox_bg_color normal
20
+ tide_distrobox_color brmagenta
21
+ tide_docker_bg_color normal
22
+ tide_docker_color blue
23
+ tide_elixir_bg_color normal
24
+ tide_elixir_color magenta
25
+ tide_gcloud_bg_color normal
26
+ tide_gcloud_color blue
27
+ tide_git_bg_color normal
28
+ tide_git_bg_color_unstable normal
29
+ tide_git_bg_color_urgent normal
30
+ tide_git_color_branch brgreen
31
+ tide_git_color_conflicted brred
32
+ tide_git_color_dirty bryellow
33
+ tide_git_color_operation brred
34
+ tide_git_color_staged bryellow
35
+ tide_git_color_stash brgreen
36
+ tide_git_color_untracked brblue
37
+ tide_git_color_upstream brgreen
38
+ tide_go_bg_color normal
39
+ tide_go_color brcyan
40
+ tide_java_bg_color normal
41
+ tide_java_color yellow
42
+ tide_jobs_bg_color normal
43
+ tide_jobs_color green
44
+ tide_kubectl_bg_color normal
45
+ tide_kubectl_color blue
46
+ tide_nix_shell_bg_color normal
47
+ tide_nix_shell_color brblue
48
+ tide_node_bg_color normal
49
+ tide_node_color green
50
+ tide_os_bg_color normal
51
+ tide_os_color brwhite
52
+ tide_php_bg_color normal
53
+ tide_php_color blue
54
+ tide_private_mode_bg_color normal
55
+ tide_private_mode_color brwhite
56
+ tide_prompt_color_frame_and_connection brblack
57
+ tide_prompt_color_separator_same_color brblack
58
+ tide_pulumi_bg_color normal
59
+ tide_pulumi_color yellow
60
+ tide_pwd_bg_color normal
61
+ tide_pwd_color_anchors brcyan
62
+ tide_pwd_color_dirs cyan
63
+ tide_pwd_color_truncated_dirs magenta
64
+ tide_python_bg_color normal
65
+ tide_python_color cyan
66
+ tide_ruby_bg_color normal
67
+ tide_ruby_color red
68
+ tide_rustc_bg_color normal
69
+ tide_rustc_color red
70
+ tide_shlvl_bg_color normal
71
+ tide_shlvl_color yellow
72
+ tide_status_bg_color normal
73
+ tide_status_bg_color_failure normal
74
+ tide_status_color green
75
+ tide_status_color_failure red
76
+ tide_terraform_bg_color normal
77
+ tide_terraform_color magenta
78
+ tide_time_bg_color normal
79
+ tide_time_color brblack
80
+ tide_toolbox_bg_color normal
81
+ tide_toolbox_color magenta
82
+ tide_vi_mode_bg_color_default normal
83
+ tide_vi_mode_bg_color_insert normal
84
+ tide_vi_mode_bg_color_replace normal
85
+ tide_vi_mode_bg_color_visual normal
86
+ tide_vi_mode_color_default white
87
+ tide_vi_mode_color_insert cyan
88
+ tide_vi_mode_color_replace green
89
+ tide_vi_mode_color_visual yellow
90
+ tide_zig_bg_color normal
91
+ tide_zig_color yellow