@heyitsiveen/dotfiles 1.0.3 → 1.0.4
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.
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@ Interactive CLI to set up dotfiles for macOS and Windows 11. One command to inst
|
|
|
5
5
|
<!-- TODO: Replace with actual recording -->
|
|
6
6
|
<!--  -->
|
|
7
7
|
<!-- [How to record the demo GIF](docs/recording-demo.md) -->
|
|
8
|
+

|
|
8
9
|
|
|
9
10
|
## Table of Contents
|
|
10
11
|
|
|
@@ -1,27 +1,20 @@
|
|
|
1
1
|
function _tide_init_install --on-event _tide_init_install
|
|
2
2
|
set -U VIRTUAL_ENV_DISABLE_PROMPT true
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
switch (read --prompt-str="Configure tide prompt? [Y/n] " | string lower)
|
|
19
|
-
case y ye yes ''
|
|
20
|
-
tide configure
|
|
21
|
-
case '*'
|
|
22
|
-
echo -s \n 'Run ' (_tide_fish_colorize "tide configure") ' to customize your prompt.'
|
|
23
|
-
end
|
|
24
|
-
end
|
|
4
|
+
tide configure --auto \
|
|
5
|
+
--style=Rainbow \
|
|
6
|
+
--prompt_colors='True color' \
|
|
7
|
+
--show_time='24-hour format' \
|
|
8
|
+
--rainbow_prompt_separators=Angled \
|
|
9
|
+
--powerline_prompt_heads=Sharp \
|
|
10
|
+
--powerline_prompt_tails=Sharp \
|
|
11
|
+
--powerline_prompt_style='Two lines, character and frame' \
|
|
12
|
+
--prompt_connection=Disconnected \
|
|
13
|
+
--powerline_right_prompt_frame=Yes \
|
|
14
|
+
--prompt_connection_andor_frame_color=Lightest \
|
|
15
|
+
--prompt_spacing=Sparse \
|
|
16
|
+
--icons='Many icons' \
|
|
17
|
+
--transient=No
|
|
25
18
|
end
|
|
26
19
|
|
|
27
20
|
function _tide_init_update --on-event _tide_init_update
|