From 53461e576e99f36fa3d62f418e152c3bc0785547 Mon Sep 17 00:00:00 2001 From: darkelfe Date: Thu, 12 Jun 2014 09:02:52 +0200 Subject: [PATCH] Config pour vundle --- vim/bundle/.gitignore | 1 + vim/vimrc | 32 +++++++++++++++++++++++++++----- 2 files changed, 28 insertions(+), 5 deletions(-) create mode 100644 vim/bundle/.gitignore 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