Skip to content

Commit

Permalink
Added echo for vimrc append action
Browse files Browse the repository at this point in the history
  • Loading branch information
ababaian committed Aug 27, 2018
1 parent d48ad84 commit cecccde
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bioSyntax_INSTALL.sh
Expand Up @@ -200,6 +200,7 @@ if [ "$(uname)" == "Darwin" ]; then
touch ~/.vimrc;
fi
if ! grep -q ":syntax enable" ~/.vimrc; then
echo 'Adding the line ":syntax enable" to your .vimrc file'
echo ":syntax enable" >> ~/.vimrc;
fi

Expand Down Expand Up @@ -446,6 +447,7 @@ elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
touch ~/.vimrc;
fi
if ! grep -q "syntax enable" ~/.vimrc; then
echo 'Adding the line ":syntax enable" to your .vimrc file'
echo "syntax enable" >> ~/.vimrc;
fi

Expand Down Expand Up @@ -657,6 +659,7 @@ else
touch $HOME/_vimrc;
fi
if ! grep -q ":syntax enable" $HOME/_vimrc; then
echo 'Adding the line ":syntax enable" to your .vimrc file'
echo ":syntax enable" >> $HOME/_vimrc;
fi

Expand Down

0 comments on commit cecccde

Please sign in to comment.