VIM 플러그인들을 관리해준다. 이를 통해 VIM 에서 직접 플러그인을 다운받고 설치할 필요가 없다.
플러그인
NERDTree도 같이 설치해보는 예제이다.
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim~/.vimrc 파일 생성call plug#begin()
Plug 'preservim/NERDTree'
call plug#end()vim 에서 :PlugInstall 을 친다.

참고자료: