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.
46 lines
1.3 KiB
46 lines
1.3 KiB
9 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 'Raimondi/delimitMate'
|
||
|
"show tabs
|
||
|
Plugin 'nathanaelkane/vim-indent-guides'
|
||
|
Plugin 'vim-scripts/taglist.vim'
|
||
|
" Plugin 'powerline/powerline', {'rtp': 'powerline/bindings/vim/'}
|
||
|
" Plugin 'Lokaltog/vim-powerline'
|
||
|
" Plugin 'bling/vim-airline'
|
||
|
|
||
|
" 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
|
||
|
|