소스 검색

Add Vundle plugin manager in vimrc

DricomDragon 5 년 전
부모
커밋
31e5a1b657
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      Install/Templates/vimrc

+ 10 - 0
Install/Templates/vimrc

@@ -1,3 +1,13 @@
+" Vundle plugin manager
+set nocompatible
+filetype off
+
+set rtp+=~/.vim/bundle/Vundle.vim
+
+call vundle#begin()
+Plugin 'VundleVim/Vundle.vim'
+call vundle#end()
+
 " Make hard tab look like 4 spaces tabs
 set shiftwidth=4
 set tabstop=4