Barebones Vim Plugin Manager
- Does 3 things and does them well - Install, Remove, Update
- Parallel install & update using Python multithreading.
- Easy setup and simple usage.
Put the zen.vim file into the autoload directory.
curl -o ~/.local/share/nvim/site/autoload/zen.vim --create-dirs https://raw.githubusercontent.com/danishprakash/vim-zen/master/zen.vimcurl -o ~/.vim/autoload/zen.vim --create-dirs https://raw.githubusercontent.com/danishprakash/vim-zen/master/zen.vim- Add a
vim-zensection in your vimrc. - Add
call zen#init()method at the beginnning of the section. - Add plugins using the
Plugincommand. - Reload
.vimrc. - Run
ZenInstallfrom within vim.
" begin section
call zen#init()
Plugin 'junegunn/goyo.vim'
Plugin 'https://github.com/danishprakash/vimport'
" end sectionSee this for reference.
ZenInstall: Install plugins.ZenUpdate: Update plugins.ZenDelete: Remove unused plugins.
I wanted something really simple, all other plugin managers out there did the things that I wanted along with other stuff. I wanted a plugin manager that helped me install, remove, and update the plugins I use.
MIT
