blob: ec59455fb76947cbdc14da2c8fbd5218b2a3f289 (
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.sh
source ~/.shells/exports.sh
#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)"
|