Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
then statements are put on the same lines as ifs to make the script consistent
  • Loading branch information
c0rdis committed May 7, 2016
1 parent c0ac88d commit 1a29c9d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,8 @@ echo "${NORMAL}"
env git clone --depth=1 https://github.com/VundleVim/Vundle.vim.git "$VIM/bundle/Vundle.vim"
fi

if [ ! -f $VIM/colors/wombat256mod.vim ]
then
if [ ! -d $VIM/colors/ ]
then
if [ ! -f $VIM/colors/wombat256mod.vim ]; then
if [ ! -d $VIM/colors/ ]; then
mkdir -p $VIM/colors
fi
wget 'http://www.vim.org/scripts/download_script.php?src_id=13400' -O $VIM/colors/wombat256mod.vim
Expand Down

0 comments on commit 1a29c9d

Please sign in to comment.