2013-01-04 05:16:44 -05:00
|
|
|
|
2014-12-09 01:27:11 -05:00
|
|
|
# If you want to use Liquid Prompt without bothering about its configuration,
|
|
|
|
# just run the following command:
|
2013-01-04 05:16:44 -05:00
|
|
|
# cp example.bashrc ~/.bashrc
|
|
|
|
|
2014-12-09 01:27:11 -05:00
|
|
|
# The following is a minimalistic Bash config file
|
2013-01-04 05:16:44 -05:00
|
|
|
|
2014-12-09 01:27:11 -05:00
|
|
|
# Use the system config if it exists
|
2013-01-04 05:16:44 -05:00
|
|
|
if [ -f /etc/bashrc ]; then
|
2014-12-09 01:27:11 -05:00
|
|
|
. /etc/bashrc # --> Read /etc/bashrc, if present.
|
2013-01-04 05:16:44 -05:00
|
|
|
fi
|
|
|
|
|
2014-12-09 01:27:11 -05:00
|
|
|
# Use Bash completion, if installed
|
2013-01-04 05:16:44 -05:00
|
|
|
if [ -f /etc/bash_completion ]; then
|
|
|
|
. /etc/bash_completion
|
|
|
|
fi
|
|
|
|
|
2014-12-09 01:27:11 -05:00
|
|
|
# If you have your own config for Liquid Prompt, edit and uncomment this line:
|
2013-01-04 05:16:44 -05:00
|
|
|
# source /path/to/liquidpromptrc
|
|
|
|
|
2014-12-09 01:27:11 -05:00
|
|
|
# Use Liquid Prompt
|
2013-01-04 05:16:44 -05:00
|
|
|
source ~/.liquidprompt
|
|
|
|
|