Modify zsh prompt

This commit is contained in:
samedamci 2020-03-13 21:34:38 +01:00
parent c902aa4ea8
commit 4557e863db

View File

@ -19,11 +19,10 @@ source "${HOME}/.aliases"
source "${HOME}/.zprofile"
# Prompt
source ~/.config/zsh/plugins/zsh-git-prompt/zshrc.sh
#export PROMPT="%B%F{blue}%~ %b%f$ "
export PROMPT=' %F{#299b9b}%~ %f
[%B%F{red}%?%f%b]%F{#299b9b}%B>%b%f '
export RPROMPT='$(git_status)'
setopt prompt_subst
setopt autocd
PROMPT='%F{green}%m%f in %B%F{#299b9b}%~%f%b $(git_status)
%f%b% {%B%F{red}%?%f%b}%F{#299b9b}%B>%b%f '
function git_status() {
ref=$(git symbolic-ref --quiet --short HEAD 2> /dev/null || git rev-parse --short HEAD 2> /dev/null)