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.
36 lines
801 B
VimL
36 lines
801 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 'jistr/vim-nerdtree-tabs'
|
|
|
|
" 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 'https://bitbucket.org/teramako/jscomplete-vim.git'
|
|
Plugin 'jelera/vim-javascript-syntax'
|
|
Plugin 'othree/javascript-libraries-syntax.vim'
|
|
|
|
"Plugin 'darkelfe/vim-highlight'
|
|
"Plugin 'file:///home/darkelfe/Git/vim-highlight'
|
|
|
|
" Thème
|
|
Plugin 'tomasr/molokai'
|
|
|
|
call vundle#end()
|