Browse Source

Add Vundle plugin manager in vimrc

DricomDragon 5 years ago
parent
commit
31e5a1b657
1 changed files with 10 additions and 0 deletions
  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