diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2018-03-15 20:11:38 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2018-03-15 20:11:38 -0400 |
| commit | 0f7e3a5395a283251e68d28f26f2891f0b196e65 (patch) | |
| tree | a68ebc8e0224dfa2f339b5d71faf800eae972e02 /setup.sh | |
| parent | 0507b921b4e21db6e26beab317ed06d92834da1e (diff) | |
| download | vim-cfg-0f7e3a5395a283251e68d28f26f2891f0b196e65.tar.gz vim-cfg-0f7e3a5395a283251e68d28f26f2891f0b196e65.tar.xz | |
The great purge
Removed all of the plugins adjusted the vimrc a little bit to use
only builtins
Diffstat (limited to 'setup.sh')
| -rwxr-xr-x | setup.sh | 45 |
1 files changed, 1 insertions, 44 deletions
@@ -1,46 +1,3 @@ #!/bin/sh -WD="$(pwd)" - -clone() { - printf "\033[0mWorking dir: \033[1;34m%s\033[0;33m\n" $DIR - if [ -d "$DIR" ] ; then - cd $DIR - git pull --ff-only origin master - elif ! [ -d "$DIR" ] ; then - mkdir -p "$DIR" - cd "$DIR" - git clone --depth=1 "$URL" . - fi - cd $WD -} -DIR="bundle/jinja2-syntax" -URL="https://github.com/Glench/Vim-Jinja2-Syntax.git" -clone -DIR="bundle/vim-airline" -URL="https://github.com/vim-airline/vim-airline.git" -clone -DIR="bundle/nerdtree" -URL="https://github.com/scrooloose/nerdtree.git" -clone -DIR="bundle/vim-autocomplpop" -URL="https://git.riedstra.us/mitch/vim-autocomplpop.git" -clone -DIR="bundle/ag.vim" -URL="https://github.com/rking/ag.vim.git" -clone -DIR="bundle/tagbar" -URL="git://github.com/majutsushi/tagbar" -clone -DIR="bundle/ctrlp.vim" -URL="https://github.com/ctrlpvim/ctrlp.vim" -clone -DIR="bundle/vim-distinguished" -URL="https://github.com/Lokaltog/vim-distinguished.git" -clone -DIR="bundle/emmet-vim" -URL="https://github.com/mattn/emmet-vim.git" -clone -DIR="bundle/l9" -URL="https://git.riedstra.us/mitch/vim-l9.git" -clone +echo "Not doing anything because I'm not using plugins anymore" |
