mirror of https://github.com/einverne/dotfiles.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
10 years ago
|
set nocompatible " be iMproved, required
|
||
|
filetype off " required
|
||
|
|
||
|
" set the runtime path to include Vundle and initialize
|
||
|
if has("win32")
|
||
|
set rtp+=$VIM/vimfiles/bundle/Vundle.vim
|
||
|
call vundle#begin('$VIM/vimfiles/bundle')
|
||
|
else
|
||
|
set rtp+=~/.vim/bundle/Vundle.vim
|
||
|
call vundle#begin()
|
||
|
endif
|
||
|
" alternatively, pass a path where Vundle should install plugins
|
||
|
"call vundle#begin('~/some/path/here')
|
||
|
|
||
|
" let Vundle manage Vundle, required
|
||
|
Plugin 'gmarik/Vundle.vim'
|
||
|
|
||
|
" The following are examples of different formats supported.
|
||
|
" Keep Plugin commands between vundle#begin/end.
|
||
|
" plugin on GitHub repo
|
||
|
Plugin 'tpope/vim-fugitive'
|
||
|
Plugin 'vim-perl/vim-perl'
|
||
|
Plugin 'godlygeek/tabular'
|
||
|
Plugin 'plasticboy/vim-markdown'
|
||
|
Plugin 'scrooloose/nerdtree'
|
||
|
Plugin 'davidhalter/jedi-vim'
|
||
|
Plugin 'ervandew/supertab'
|
||
|
|
||
|
" plugin from http://vim-scripts.org/vim/scripts.html
|
||
|
Plugin 'L9'
|
||
|
Plugin 'perl-support.vim'
|
||
|
|
||
|
" Git plugin not hosted on GitHub
|
||
|
Plugin 'git://git.wincent.com/command-t.git'
|
||
|
|
||
|
call vundle#end() " required
|
||
|
filetype plugin indent on " required
|
||
|
|