[[ -z "$PS1" ]] && return
# Set prompt
-export PS1="\\w\$(__git_ps1 '(%s)') \$ "
+PS1='\[\033[32m\]\u \[\033[36m\]@ \h \w\[\033[32m\]$(__git_ps1)\nāā \$ ā¶\[\033[0m\] '
+
+export GIT_PS1_SHOWDIRTYSTATE=1
+export GIT_PS1_SHOWCOLORHINTS=1
+export GIT_PS1_SHOWUNTRACKEDFILES=1
+export GIT_PS1_SHOWSTASHSTATE=1
+export GIT_PS1_SHOWUPSTREAM="auto"
+export GIT_PS1_HIDE_IF_PWD_IGNORED=1
+
+# Whenever displaying the prompt, write the previous line to disk
+export PROMPT_COMMAND="history -a;"
# Set favorites
export SHELL='bash'
export HISTCONTROL=ignoreboth:erasedups
export HISTIGNORE="ll:ls:cd:cd -:pwd:exit:date:* --help";
-# Whenever displaying the prompt, write the previous line to disk
-export PROMPT_COMMAND="history -a;"
# Load aliases, functions, etc
for file in ${HOME}/.config/bash/*; do