Last active
November 7, 2022 04:53
-
-
Save micrub/8390c1a9231e94a3ba90d36e8fc18d92 to your computer and use it in GitHub Desktop.
vim 8 plugin set inititialization
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
# Since Feb 22, VIM 8, has a plugin managment feature. | |
# :h packages | |
# https://raw.githubusercontent.com/vim/vim/master/runtime/doc/version8.txt | |
take .vim/pack/micrub/start | |
git clone http://github.com/elzr/vim-json | |
git clone http://github.com/WolfgangMehner/bash-support | |
git clone http://github.com/farmergreg/vim-lastplace | |
git clone http://github.com/godlygeek/tabular | |
git clone https://github.com/garbas/vim-snipmate.git | |
git clone https://github.com/tomtom/tlib_vim.git | |
git clone https://github.com/MarcWeber/vim-addon-mw-utils.git | |
git clone http://github.com/honza/vim-snippets.git | |
git clone http://github.com/pangloss/vim-javascript | |
git clone http://github.com/rhysd/vim-grammarous | |
git clone http://github.com/scrooloose/nerdcommenter | |
git clone http://github.com/scrooloose/nerdtree | |
git clone http://github.com/sukima/vim-tiddlywiki | |
git clone http://github.com/tpope/vim-surround | |
git clone http://github.com/tibabit/vim-templates |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment