aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2018-06-20 22:59:53 -0300
committerEuAndreh <eu@euandre.org>2018-06-20 22:59:53 -0300
commit1dc9bf03cf4b803897f7ceb62809b413285f7085 (patch)
tree22808c1579fa85c37fe1b4cc8f59d063ead4d0aa
parentRequire exec-path-from-shell (diff)
downloaddotfiles-1dc9bf03cf4b803897f7ceb62809b413285f7085.tar.gz
dotfiles-1dc9bf03cf4b803897f7ceb62809b413285f7085.tar.xz
Source autojump only on Linux
Diffstat (limited to '')
-rw-r--r--bash/bashrc.sh4
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
+}