diff options
author | EuAndreh <eu@euandre.org> | 2018-06-20 22:59:53 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-06-20 22:59:53 -0300 |
commit | 1dc9bf03cf4b803897f7ceb62809b413285f7085 (patch) | |
tree | 22808c1579fa85c37fe1b4cc8f59d063ead4d0aa | |
parent | Require exec-path-from-shell (diff) | |
download | dotfiles-1dc9bf03cf4b803897f7ceb62809b413285f7085.tar.gz dotfiles-1dc9bf03cf4b803897f7ceb62809b413285f7085.tar.xz |
Source autojump only on Linux
Diffstat (limited to '')
-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 +} |