From f924f9f915c6dbaf0bfcccc5b3ad1792927533a0 Mon Sep 17 00:00:00 2001 From: self Date: Mon, 7 Mar 2022 22:08:39 +0000 Subject: Updated zsh prompt to include Git branch + timestamp --- zsh/.zshrc | 24 ++++++++++++++++++++++-- 1 file 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 -- cgit v1.2.1