aboutsummaryrefslogtreecommitdiff
path: root/bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc7
1 files changed, 6 insertions, 1 deletions
diff --git a/bashrc b/bashrc
index 9c764b9..d8f07eb 100644
--- a/bashrc
+++ b/bashrc
@@ -90,6 +90,11 @@ if [ -f $HOME/.tdcompletion.sh ]; then
source $HOME/.tdcompletion.sh
fi
+# Complete the `docker` command if possible.
+if [ -f $HOME/.dockercompletion.sh ]; then
+ source $HOME/.dockercompletion.sh
+fi
+
# Add the `scripts` dir to the path if possible. See:
# https://github.com/mssola/scripts.
if [ -d $HOME/.scripts ]; then
@@ -108,4 +113,4 @@ function gi() {
# Finally get RVM straight.
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
-
+export PATH="$PATH:$HOME/.rvm/bin"