diff options
author | EuAndreh <eu@euandre.org> | 2018-06-22 06:53:07 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-06-22 06:53:07 -0300 |
commit | 553d5275fd33eb66482b0c7e45b2625c2ac2ebd7 (patch) | |
tree | 5d0aa14d4df87981e1acf86e760a6ea622692502 | |
parent | Add bind package (diff) | |
parent | Source autojump only on Linux (diff) | |
download | dotfiles-553d5275fd33eb66482b0c7e45b2625c2ac2ebd7.tar.gz dotfiles-553d5275fd33eb66482b0c7e45b2625c2ac2ebd7.tar.xz |
Merge branch 'master' of gitlab.com:EuAndreh/dotfiles
-rw-r--r-- | bash/bashrc.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bash/bashrc.sh b/bash/bashrc.sh index 0888837..3ee3df6 100644 --- a/bash/bashrc.sh +++ b/bash/bashrc.sh @@ -28,4 +28,6 @@ else fi # FIXME -source $(dirname $(readlink $(which autojump)))/../share/bash-completion/completions/autojump.bash +isLinux && { + source $(dirname $(readlink $(which autojump)))/../share/bash-completion/completions/autojump.bash +} |