Added safe defaults for fzf and bash_git_prompt to .bashrc

This commit is contained in:
2020-02-14 10:57:44 -05:00
parent 1c572179e8
commit ddd850f78c

18
.bashrc
View File

@@ -1 +1,19 @@
# .bashrc
# User specific aliases and functions
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
if [ -f "$HOME/.bash-git-prompt/gitprompt.sh" ]; then
GIT_PROMPT_ONLY_IN_REPO=1
source $HOME/.bash-git-prompt/gitprompt.sh
fi
[ -f ~/.fzf.bash ] && source ~/.fzf.bash