Skip to content

Commit

Permalink
Merge branch 'fix/example.bashrc' into develop
Browse files Browse the repository at this point in the history
Fix example.bashrc
  • Loading branch information
dolmen committed Dec 13, 2014
2 parents 76f6813 + ff5edbb commit fdbd7ca
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions example.bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@

# Use the system config if it exists
if [ -f /etc/bashrc ]; then
. /etc/bashrc # --> Read /etc/bashrc, if present.
. /etc/bashrc # --> Read /etc/bashrc, if present.
elif [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc # --> Read /etc/bash.bashrc, if present.
fi

# The following lines are only for interactive shells
[[ $- = *i* ]] || return

# Use Bash completion, if installed
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi

# If you have your own config for Liquid Prompt, edit and uncomment this line:
# source /path/to/liquidpromptrc

# Use Liquid Prompt
source ~/.liquidprompt
source ~/liquidprompt/liquidprompt

0 comments on commit fdbd7ca

Please sign in to comment.