From 709accc8e4f6dc3c21fc9b55e9fcc31559c68472 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Sat, 21 Sep 2019 12:44:34 -0400 Subject: Re-arrange the vim configuration --- setup.sh | 57 +++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 37 insertions(+), 20 deletions(-) (limited to 'setup.sh') diff --git a/setup.sh b/setup.sh index abf85a3..44cf17e 100755 --- a/setup.sh +++ b/setup.sh @@ -3,47 +3,64 @@ WD="$(pwd)" clone() { - printf "\033[0mWorking dir: \033[1;34m%s\033[0;33m\n" $DIR + printf "Working dir: %s +" $DIR if [ -d "$DIR" ] ; then cd $DIR git pull --ff-only origin master elif ! [ -d "$DIR" ] ; then mkdir -p "$DIR" cd "$DIR" - git clone "$URL" . + git clone --depth=1 "$URL" . fi cd $WD + printf "" } -DIR="bundle/ag.vim" +DIR="pack/plugins/start/vim-go" +URL="https://github.com/fatih/vim-go.git" +clone +DIR="pack/plugins/start/ag.vim" URL="https://github.com/rking/ag.vim.git" clone -DIR="bundle/ctrlp.vim" +DIR="pack/plugins/start/ctrlp.vim" URL="https://github.com/ctrlpvim/ctrlp.vim" clone -DIR="bundle/emmet-vim" +DIR="pack/plugins/start/emmet-vim" URL="https://github.com/mattn/emmet-vim.git" clone -DIR="bundle/l9" -URL="https://git.riedstra.us/vim/vim-l9.git" +DIR="pack/plugins/start/gundo" +URL="https://github.com/sjl/gundo.vim" clone -DIR="bundle/vim-airline-themes" -URL="https://github.com/vim-airline/vim-airline-themes/" +DIR="pack/plugins/start/nerdtree" +URL="https://github.com/scrooloose/nerdtree" clone -DIR="bundle/vim-airline" +DIR="pack/plugins/start/vim-airline" URL="https://github.com/vim-airline/vim-airline.git" clone -DIR="bundle/vim-autocomplpop" -URL="https://git.riedstra.us/vim/vim-autocomplpop.git" +DIR="pack/plugins/start/vim-airline-themes" +URL="https://github.com/vim-airline/vim-airline-themes/" clone -DIR="bundle/vim-go" -URL="https://github.com/fatih/vim-go.git" +DIR="pack/plugins/start/dracula" +URL="https://github.com/dracula/vim.git" clone -DIR="bundle/nerdtree" -URL="https://github.com/scrooloose/nerdtree" +DIR="pack/plugins/start/l9" +URL="git:~/vim/vim-l9.git" clone -DIR="bundle/gundo" -URL="https://github.com/sjl/gundo.vim" +DIR="pack/plugins/start/vim-autocomplpop" +URL="git:~/vim/vim-autocomplpop.git" +clone +DIR="pack/themes/start/mitch" +URL="git@rygel.us:~/vim/mitch.git" +clone +DIR="pack/themes/start/solarized" +URL="https://github.com/altercation/vim-colors-solarized" +clone +DIR="pack/themes/start/orbital" +URL="https://github.com/fcpg/vim-orbital" +clone +DIR="pack/themes/start/monotone" +URL="https://github.com/Lokaltog/vim-monotone" clone -DIR="themes/mitch" -URL="https://git.riedstra.us/vim/mitch.git" +DIR="pack/themes/start/gruvbox" +URL="https://github.com/morhetz/gruvbox" clone -- cgit v1.2.3