1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,29 @@ |
0 |
+# user, host, full path, and time/date |
|
1 |
+# on two lines for easier vgrepping |
|
2 |
+# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888 |
|
3 |
+ |
|
4 |
+function hg_prompt_info { |
|
5 |
+ hg prompt --angle-brackets "\ |
|
6 |
+<hg:%{$fg[magenta]%}<branch>%{$reset_color%}>\ |
|
7 |
+</%{$fg[yellow]%}<tags|%{$reset_color%}, %{$fg[yellow]%}>%{$reset_color%}>\ |
|
8 |
+%{$fg[red]%}<status|modified|unknown><update>%{$reset_color%}< |
|
9 |
+patches: <patches|join( → )|pre_applied(%{$fg[yellow]%})|post_applied(%{$reset_color%})|pre_unapplied(%{$fg_bold[black]%})|post_unapplied(%{$reset_color%})>>" 2>/dev/null |
|
10 |
+} |
|
11 |
+ |
|
12 |
+ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%}+" |
|
13 |
+ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%}✱" |
|
14 |
+ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}✗" |
|
15 |
+ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}➦" |
|
16 |
+ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%}✂" |
|
17 |
+ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[grey]%}✈" |
|
18 |
+ |
|
19 |
+function mygit() { |
|
20 |
+ ref=$(git symbolic-ref HEAD 2> /dev/null) || return |
|
21 |
+ echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$( git_prompt_status )%{$reset_color%}$ZSH_THEME_GIT_PROMPT_SUFFIX" |
|
22 |
+} |
|
23 |
+ |
|
24 |
+# alternate prompt with git & hg |
|
25 |
+PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%Y-%m-%d %I:%M:%S"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%} |
|
26 |
+%{\e[0;34m%}%B└─%B[%{\e[1;35m%}$%{\e[0;34m%}%B] <$(mygit)$(hg_prompt_info)>%{\e[0m%}%b ' |
|
27 |
+PS2=$' \e[0;34m%}%B>%{\e[0m%}%b ' |
|
28 |
+ |
... | ... |
@@ -2,30 +2,7 @@ |
2 | 2 |
# on two lines for easier vgrepping |
3 | 3 |
# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888 |
4 | 4 |
|
5 |
-function hg_prompt_info { |
|
6 |
- hg prompt --angle-brackets "\ |
|
7 |
-<hg:%{$fg[magenta]%}<branch>%{$reset_color%}>\ |
|
8 |
-</%{$fg[yellow]%}<tags|%{$reset_color%}, %{$fg[yellow]%}>%{$reset_color%}>\ |
|
9 |
-%{$fg[red]%}<status|modified|unknown><update>%{$reset_color%}< |
|
10 |
-patches: <patches|join( → )|pre_applied(%{$fg[yellow]%})|post_applied(%{$reset_color%})|pre_unapplied(%{$fg_bold[black]%})|post_unapplied(%{$reset_color%})>>" 2>/dev/null |
|
11 |
-} |
|
12 |
- |
|
13 |
-ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%}+" |
|
14 |
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%}✱" |
|
15 |
-ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}✗" |
|
16 |
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}➦" |
|
17 |
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%}✂" |
|
18 |
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[grey]%}✈" |
|
19 |
- |
|
20 |
-function mygit() { |
|
21 |
- ref=$(git symbolic-ref HEAD 2> /dev/null) || return |
|
22 |
- echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$( git_prompt_status )%{$reset_color%}$ZSH_THEME_GIT_PROMPT_SUFFIX" |
|
23 |
-} |
|
24 |
- |
|
25 | 5 |
PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%Y-%m-%d %I:%M:%S"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%} |
26 | 6 |
%{\e[0;34m%}%B└─%B[%{\e[1;35m%}$%{\e[0;34m%}%B]%{\e[0m%}%b ' |
27 |
-#PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%Y-%m-%d %I:%M:%S"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%} |
|
28 |
-#%{\e[0;34m%}%B└─%B[%{\e[1;35m%}$%{\e[0;34m%}%B] <$(mygit)$(hg_prompt_info)>%{\e[0m%}%b ' |
|
29 |
-PS2=$' \e[0;34m%}%B>%{\e[0m%}%b ' |
|
30 |
-#RPROMPT='$(mygit)' |
|
7 |
+ |
|
31 | 8 |
|