9 lines
170 B
VimL
9 lines
170 B
VimL
set nocompatible
|
|
syntax on
|
|
filetype off
|
|
set rtp+=~/.vim/bundle/Vundle.vim/
|
|
call vundle#begin()
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
call vundle#end()
|
|
filetype plugin indent on
|
|
|