aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/tools/web_config/sample_prompts/pythonista.fish
diff options
context:
space:
mode:
Diffstat (limited to 'share/tools/web_config/sample_prompts/pythonista.fish')
-rw-r--r--share/tools/web_config/sample_prompts/pythonista.fish33
1 files changed, 33 insertions, 0 deletions
diff --git a/share/tools/web_config/sample_prompts/pythonista.fish b/share/tools/web_config/sample_prompts/pythonista.fish
new file mode 100644
index 00000000..5c98e56b
--- /dev/null
+++ b/share/tools/web_config/sample_prompts/pythonista.fish
@@ -0,0 +1,33 @@
+# name: Simple Pythonista
+# author: davbo
+
+set normal (set_color normal)
+set magenta (set_color magenta)
+set yellow (set_color yellow)
+set green (set_color green)
+set gray (set_color -o black)
+
+
+function fish_prompt
+ set_color yellow
+ printf '%s' (whoami)
+ set_color normal
+ printf ' at '
+
+ set_color magenta
+ printf '%s' (hostname|cut -d . -f 1)
+ set_color normal
+ printf ' in '
+
+ set_color $fish_color_cwd
+ printf '%s' (prompt_pwd)
+ set_color normal
+
+ # Line 2
+ echo
+ if test $VIRTUAL_ENV
+ printf "(%s) " (set_color blue)(basename $VIRTUAL_ENV)(set_color normal)
+ end
+ printf '↪ '
+ set_color normal
+end