summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorself <self@sateoki.xyz>2022-03-07 22:08:39 +0000
committerself <self@sateoki.xyz>2022-03-07 22:08:39 +0000
commitf924f9f915c6dbaf0bfcccc5b3ad1792927533a0 (patch)
tree48261e9d37b19c211406a8ac1171caf3c682c544 /zsh
parentb31f9ffa32a121b123e3a23bd585cc1af115ce59 (diff)
Updated zsh prompt to include Git branch + timestamp
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zshrc24
1 files changed, 22 insertions, 2 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 4292c92..42c1c36 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -37,8 +37,28 @@ alias newsboat="newsboat -u ~/.config/newsboat/urls"
# Changing Default Prompt
# PS1='[%F{#ff0000}%n%f %F{#6a0dad}%1d%f] '
-PS1='[%F{#1111ee}%1d%f] => '
-PROMPT=$PS1
+# PS1='[%F{#1111ee}%1d%f] => '
+# Creates a git prompt
+git_branch_test_color() {
+ local ref=$(git symbolic-ref --short HEAD 2> /dev/null)
+ if [ -n "${ref}" ]; then
+ if [ -n "$(git status --porcelain)" ]; then
+ local gitstatuscolor='%F{red}'
+ else
+ local gitstatuscolor='%F{green}'
+ fi
+ echo "${gitstatuscolor} (${ref})"
+ else
+ echo ""
+ fi
+}
+setopt PROMPT_SUBST
+# PS1="%? | [%F{#ff0000}%n%f] [$(vcs_info_wrapper)] %2~ %# "
+PROMPT='%9c$(git_branch_test_color)%F{none} %# '
+RPROMPT='%D{%k:%M:%S}'
+
+
+# PROMPT=$PS1
########## Aliases / Functions ##########
# allow sudo to make use of aliases