summaryrefslogtreecommitdiff
path: root/bash/.bashrc
blob: 9f4e80d51c9c749d6d3795f453262fdb7aef997a (plain)
1
2
3
4
5
6
7
8
9
# Prompt
if [[ -n $SSH_CLIENT  ]]; then
    PS1=$'\e[0;31m[\h]\e[0m \w $ '
else
    PS1='\w $ '
fi

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