mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Install script now looks for .zshrc in $ZDOTDIR as well.
User can also supply as a first parameter the script to append to zsh-autosuggestions.
This commit is contained in:
parent
59699a0946
commit
24ac946dd9
1 changed files with 14 additions and 7 deletions
21
install
21
install
|
@ -2,11 +2,18 @@
|
||||||
|
|
||||||
# Install script for zsh-autocomplete
|
# Install script for zsh-autocomplete
|
||||||
|
|
||||||
#first checks if ~/.zshrc file exists and is readable
|
config="$HOME/.zshrc"
|
||||||
if [ ! -r ~/.zshrc ]; then
|
for config in "$HOME/.zshrc" "$ZDOTDIR/.zshrc" "$1"
|
||||||
echo "\nError: ~/.zshrc file does not exist or is not readable!\n"
|
do
|
||||||
exit 1
|
echo $config
|
||||||
fi
|
#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
|
||||||
|
|
||||||
SOURCE="${BASH_SOURCE[0]}"
|
SOURCE="${BASH_SOURCE[0]}"
|
||||||
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
|
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
|
||||||
|
@ -16,8 +23,8 @@ while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symli
|
||||||
done
|
done
|
||||||
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||||
|
|
||||||
# appends the string to ~/.zshrc file
|
# appends the string to $config (usually ~/.zshrc) file
|
||||||
cat >> ~/.zshrc << EOF
|
cat >> "$config" << EOF
|
||||||
|
|
||||||
# Setup zsh-autosuggestions
|
# Setup zsh-autosuggestions
|
||||||
source $DIR/autosuggestions.zsh
|
source $DIR/autosuggestions.zsh
|
||||||
|
|
Loading…
Reference in a new issue