You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
571 B
VimL
30 lines
571 B
VimL
filetype off
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
|
|
call vundle#begin()
|
|
|
|
" Vundle lui-même
|
|
Plugin 'gmarik/Vundle.vim'
|
|
|
|
" Plugin fonctionnels
|
|
Plugin 'scrooloose/syntastic'
|
|
Plugin 'scrooloose/nerdcommenter'
|
|
Plugin 'scrooloose/nerdtree'
|
|
Plugin 'bling/vim-airline'
|
|
Plugin 'majutsushi/tagbar'
|
|
|
|
" Plugin de syntaxe
|
|
Plugin 'othree/html5.vim'
|
|
Plugin 'itspriddle/vim-jquery'
|
|
Plugin 'estin/htmljinja'
|
|
Plugin 'ChrisYip/Better-CSS-Syntax-for-Vim'
|
|
Plugin 'noprompt/vim-yardoc'
|
|
Plugin 'php.vim--Hodge'
|
|
|
|
Plugin 'darkelfe/vim-highlight'
|
|
|
|
" Thème
|
|
Plugin 'tomasr/molokai'
|
|
|
|
call vundle#end()
|