blob: 35cf2b3db74e26ef2411e6b8850184e90e2a7be4 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Bash initialization for interactive non-login shells and
# for remote shells (info "(bash) Bash Startup Files").
# Export 'SHELL' to child processes. Programs such as 'screen'
# honor it and otherwise use /bin/sh.
source ~/.shells/alias
source ~/.shells/exports
#source ~/.shells/prompt
PS1='\n\[\e[0m\][\[\e[0;1;38;5;208m\]\w\[\e[0;2;38;5;248m\]|\[\e[0;2;38;5;220m\]$(git branch 2>/dev/null | grep '"'"'^*'"'"' | colrm 1 2) \[\e[0;2;38;5;242m\]\t\[\e[0m\]]\n\[\e[0m\]-\[\e[0m\]> \[\e[0m\]'
#eval "$(starship init bash)"
|