summaryrefslogtreecommitdiff
path: root/bash/.bashrc
blob: 0e8ede69d1636500af0b1619781f9424d3c2374c (plain)
1
2
3
4
5
6
7
8
9
10
11
# Prompt

if [[ -n $SSH_CLIENT  ]]; then
    PS1=$'\w\e[0;31m$ \e[0m'
else
    PS1='\w $ '
fi


# FZF
[ -f ~/.fzf.bash ] && source ~/.fzf.bash