From 24ba83ab9b2c8b5dd7fa53015bb3f89b33ccc578 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Wed, 13 Jul 2016 13:25:10 +0100 Subject: [PATCH] Use correct plugin paths for linux --- zshrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zshrc b/zshrc index 088ab30..b4011d6 100644 --- a/zshrc +++ b/zshrc @@ -89,16 +89,16 @@ bindKeysZshHistoryLinux() { } test -e /usr/local/opt/zsh-history-substring-search/zsh-history-substring-search.zsh \ && source /usr/local/opt/zsh-history-substring-search/zsh-history-substring-search.zsh -test -e /usr/opt/zsh-history-substring-search/zsh-history-substring-search.zsh \ -&& source /usr/opt/zsh-history-substring-search/zsh-history-substring-search.zsh +test -e /usr/share/zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh \ +&& source /usr/share/zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh test "$platform" = 'osx' && bindKeysZshHistoryOSX test "$platform" = 'linux' && bindKeysZshHistoryLinux # ZSH autosuggestions test -e /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh \ && source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh -test -e /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh \ -&& source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh +test -e /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh \ +&& source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh # You may need to manually set your language environment export LANG=en_GB.UTF-8