From ef526085bfe4919c66b2cfe0279452d48201efd0 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Mon, 4 Jul 2016 18:56:01 +0100 Subject: [PATCH] Add zsh-autosuggestions --- zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zshrc b/zshrc index 6d0130e..05429c9 100644 --- a/zshrc +++ b/zshrc @@ -97,6 +97,12 @@ test -e /usr/opt/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 + # You may need to manually set your language environment export LANG=en_GB.UTF-8