diff options
author | Wenzheng Jiang <jwzh.hi@gmail.com> | 2017-11-02 00:05:35 +1100 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2017-11-01 06:05:35 -0700 |
commit | 1e027509d840d0d2a2fee1001543a5f2f34b3c28 (patch) | |
tree | b6a0cf896eacc5b003e136a151117b72a7742530 | |
parent | 529a12fac857efbfa749998ed872d668ff51d15d (diff) | |
download | zsh-1e027509d840d0d2a2fee1001543a5f2f34b3c28.tar.gz zsh-1e027509d840d0d2a2fee1001543a5f2f34b3c28.tar.bz2 zsh-1e027509d840d0d2a2fee1001543a5f2f34b3c28.zip |
Add nixos support for autojump plugin (#6365)
-rw-r--r-- | plugins/autojump/autojump.plugin.zsh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/autojump/autojump.plugin.zsh b/plugins/autojump/autojump.plugin.zsh index c05c699e1..7339fad9e 100644 --- a/plugins/autojump/autojump.plugin.zsh +++ b/plugins/autojump/autojump.plugin.zsh @@ -5,6 +5,8 @@ if [ $commands[autojump] ]; then # check if autojump is installed . $HOME/.autojump/share/autojump/autojump.zsh elif [ -f $HOME/.nix-profile/etc/profile.d/autojump.zsh ]; then # nix installation . $HOME/.nix-profile/etc/profile.d/autojump.zsh + elif [ -f /run/current-system/sw/share/autojump/autojump.zsh ]; then # nixos installation + . /run/current-system/sw/share/autojump/autojump.zsh elif [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package . /usr/share/autojump/autojump.zsh elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation |