diff --git a/vim/bundle/.gitignore b/vim/bundle/.gitignore new file mode 100644 index 0000000..3fa403c --- /dev/null +++ b/vim/bundle/.gitignore @@ -0,0 +1 @@ +.vundle diff --git a/vim/vimrc b/vim/vimrc index 21dc5b1..8bf52b1 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -1,14 +1,36 @@ +set nocompatible " Pas de compatibilité avec vi + "===================================================================== -" Utilisation de "pathogene" +" Utilisation de "Vundle" pour les plugins "===================================================================== -runtime bundle/vim-pathogen/autoload/pathogen.vim -execute pathogen#infect() +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' + +call vundle#end() "===================================================================== " Configuration globale "===================================================================== -set nocompatible " Pas de compatibilité avec vi - set encoding=utf-8 " Encodage par défaut set tabstop=8 " Tabulation de 8 caractères