vundle - vim plugin manager
last update:
2020/12/19
1) Install vundle
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
2) Edit ~/.vimrc
""" vundle
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" vundle basic
Bundle 'gmarik/vundle'
" syntax es6
Bundle 'othree/yajs.vim'
" file type
filetype plugin indent on
3) Install plugins into vim
:BundleInstall
more info
https://github.com/VundleVim/Vundle.vim