aboutsummaryrefslogtreecommitdiff
path: root/setup.sh
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2019-09-21 12:44:34 -0400
committerMitch Riedstra <mitch@riedstra.us>2019-09-21 12:44:34 -0400
commit709accc8e4f6dc3c21fc9b55e9fcc31559c68472 (patch)
tree924f41bd3047921da27a999026a1be0f7b35b5ea /setup.sh
parent314989ba7e969d353aa3a96454b03c2f5ff6511b (diff)
downloadvim-cfg-709accc8e4f6dc3c21fc9b55e9fcc31559c68472.tar.gz
vim-cfg-709accc8e4f6dc3c21fc9b55e9fcc31559c68472.tar.xz
Re-arrange the vim configuration
Diffstat (limited to 'setup.sh')
-rwxr-xr-xsetup.sh57
1 files changed, 37 insertions, 20 deletions
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