zsh-autosuggestions/install

45 lines
1.3 KiB
Text
Raw Normal View History

2015-02-22 20:45:25 +01:00
#!/bin/bash
2014-11-21 22:51:19 +01:00
# Install script for zsh-autocomplete
config="$HOME/.zshrc"
for config in "$HOME/.zshrc" "$ZDOTDIR/.zshrc" "$1"; do
echo $config
#first checks if ~/.zshrc file exists and is readable
if [ -r "$config" ]; then
break
elif [ "$config" = "$1" ]; then
echo "\nError: Please specify as first argument the file in which to load zsh-autosuggestions (usually ~/.zshrc)!\n"
exit 1
fi
done
2014-11-21 22:51:19 +01:00
2015-01-23 23:38:46 +01:00
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
SOURCE="$(readlink "$SOURCE")"
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
2015-01-23 23:38:46 +01:00
done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
2014-11-21 22:51:19 +01:00
# appends the string to $config (usually ~/.zshrc) file
cat >> "$config" <<-EOF
2014-11-21 22:51:19 +01:00
# Setup zsh-autosuggestions
source $DIR/autosuggestions.zsh
2014-11-21 22:51:19 +01:00
# Enable autosuggestions automatically
zle-line-init() {
zle autosuggest-start
}
2014-11-21 22:51:19 +01:00
zle -N zle-line-init
2014-11-21 22:51:19 +01:00
# use ctrl+t to toggle autosuggestions(hopefully this wont be needed as
# zsh-autosuggestions is designed to be unobtrusive)
bindkey '^T' autosuggest-toggle
2014-11-21 22:51:19 +01:00
EOF
echo "\nSetup completed successfully!\n"
exit 0