From f330499e1e828b09a3d5f1e1228d1d1a947a0473 Mon Sep 17 00:00:00 2001 From: fleetside Date: Sun, 3 May 2020 10:56:16 -0400 Subject: [PATCH] comments --- setup.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.sh b/setup.sh index c2465e1..0d21d81 100755 --- a/setup.sh +++ b/setup.sh @@ -1,20 +1,20 @@ #!/bin/bash # outcome: replace existing dot files with symlinks pointing to new version controlled files -# setup folder pointers and target files +#-------------------------------------------------------setup folder pointers and target files------------------------------------------------------------- dir=~/linux_user_setup backup=~/linux_user_setup_restore files=".bashrc .vimrc .tmux.conf .psqlrc" -# create the resore directory if it doesn't already exist +#------------------------------------------------ create the resore directory if it doesn't already exist-------------------------------------------------- if [ ! -d $backup ] then mkdir $backup fi -# loop through each target file, move it and create a symlink to the replacements +#-------------------------------------- loop through each target file, move it and create a symlink to the replacements------------------------------------ for file in $files do @@ -31,7 +31,8 @@ do fi done -#see if Vundle has been cloned yet and do so +#----------------------------------------------------------see if Vundle has been cloned yet and do so----------------------------------------------------- + if [ ! -d ~/.vim ] then git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim -- 2.34.1