ce56db4cf4
Add some logic to work with a local, non-version controlled rc file whose only job is to configure where the local git repo is and source in those separate files without killing the current working directory from which vim was launched, in case there is a project specific .vimrc as well.
20 lines
592 B
VimL
20 lines
592 B
VimL
set nocompatible " be iMproved, required
|
|
filetype off " required
|
|
|
|
" set the runtime path to include Vundle and initialize
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
call vundle#begin()
|
|
" alternatively, pass a path where Vundle should install plugins
|
|
"call vundle#begin('~/some/path/here')
|
|
|
|
" let Vundle manage Vundle, required
|
|
Plugin 'gmarik/Vundle.vim'
|
|
Plugin 'rustushki/JavaImp.vim'
|
|
Plugin 'Tagbar'
|
|
Plugin 'vim-misc'
|
|
Plugin 'easytags.vim'
|
|
Plugin 'editorconfig-vim'
|
|
|
|
|
|
" All of your Plugins must be added before the following line
|
|
call vundle#end() " required
|