Fix and unify formatting and code-style

This commit is contained in:
Jakub Jirutka 2015-05-18 14:50:14 +02:00
parent f860711cc5
commit 258e06c9ab
5 changed files with 44 additions and 45 deletions

View file

@ -3,8 +3,7 @@
# Install script for zsh-autocomplete
config="$HOME/.zshrc"
for config in "$HOME/.zshrc" "$ZDOTDIR/.zshrc" "$1"
do
for config in "$HOME/.zshrc" "$ZDOTDIR/.zshrc" "$1"; do
echo $config
#first checks if ~/.zshrc file exists and is readable
if [ -r "$config" ]; then
@ -24,7 +23,7 @@ done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
# appends the string to $config (usually ~/.zshrc) file
cat >> "$config" << EOF
cat >> "$config" <<-EOF
# Setup zsh-autosuggestions
source $DIR/autosuggestions.zsh