aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Jurkiewicz <alex@jurkiewi.cz>2019-12-09 08:53:46 +0300
committerAlex Jurkiewicz <alex@jurkiewi.cz>2019-12-09 08:53:46 +0300
commit3c54e091f04d21a8b2db95d2a1eb6752ad56b0a0 (patch)
tree634b0b409a2e7128e98ecc00498e02e9e74a5a99
parent345d0644a9c1a242ff131bde915bbe234c3dd745 (diff)
Add example for showing the current Git commit
-rw-r--r--config/p10k-classic.zsh3
-rw-r--r--config/p10k-lean.zsh3
-rw-r--r--config/p10k-rainbow.zsh3
3 files changed, 9 insertions, 0 deletions
diff --git a/config/p10k-classic.zsh b/config/p10k-classic.zsh
index d032ef3d..832ac3ba 100644
--- a/config/p10k-classic.zsh
+++ b/config/p10k-classic.zsh
@@ -392,6 +392,9 @@
res+="${meta}:${clean}${(V)VCS_STATUS_REMOTE_BRANCH//\%/%%}" # escape %
fi
+ # Show the git commit
+ # res+=" (${VCS_STATUS_COMMIT:0:5})"
+
# ⇣42 if behind the remote.
(( VCS_STATUS_COMMITS_BEHIND )) && res+=" ${clean}⇣${VCS_STATUS_COMMITS_BEHIND}"
# ⇡42 if ahead of the remote; no leading space if also behind the remote: ⇣42⇡42.
diff --git a/config/p10k-lean.zsh b/config/p10k-lean.zsh
index 87c40923..d58cefe2 100644
--- a/config/p10k-lean.zsh
+++ b/config/p10k-lean.zsh
@@ -385,6 +385,9 @@
res+="${meta}:${clean}${(V)VCS_STATUS_REMOTE_BRANCH//\%/%%}" # escape %
fi
+ # Show the git commit
+ # res+=" (${VCS_STATUS_COMMIT:0:5})"
+
# ⇣42 if behind the remote.
(( VCS_STATUS_COMMITS_BEHIND )) && res+=" ${clean}⇣${VCS_STATUS_COMMITS_BEHIND}"
# ⇡42 if ahead of the remote; no leading space if also behind the remote: ⇣42⇡42.
diff --git a/config/p10k-rainbow.zsh b/config/p10k-rainbow.zsh
index 27ec68ee..991afcfc 100644
--- a/config/p10k-rainbow.zsh
+++ b/config/p10k-rainbow.zsh
@@ -391,6 +391,9 @@
res+="${meta}:${clean}${(V)VCS_STATUS_REMOTE_BRANCH//\%/%%}" # escape %
fi
+ # Show the git commit
+ # res+=" (${VCS_STATUS_COMMIT:0:5})"
+
# ⇣42 if behind the remote.
(( VCS_STATUS_COMMITS_BEHIND )) && res+=" ${clean}⇣${VCS_STATUS_COMMITS_BEHIND}"
# ⇡42 if ahead of the remote; no leading space if also behind the remote: ⇣42⇡42.