vim-jetpack
vim-jetpack copied to clipboard
The lightning-fast plugin manager, alternative to vim-plug
~/.vim/vimrc ```vim " automatic installation on startup let s:jetpackfile = expand(':p:h') .. '/pack/jetpack/opt/vim-jetpack/plugin/jetpack.vim' let s:jetpackurl = "https://raw.githubusercontent.com/tani/vim-jetpack/master/plugin/jetpack.vim" if !filereadable(s:jetpackfile) call system(printf('curl -fsSLo %s --create-dirs %s', s:jetpackfile, s:jetpackurl)) endif packadd vim-jetpack...
bug:
When vimrc is ```vim packadd nim.vim filetype plugin on ``` and exec `vim test.nim` then shiftwidth is "2". But when vimrc is ```vim packadd vim-jetpack call jetpack#begin() Jetpack 'tani/vim-jetpack', {'opt':...