|
|
|
@ -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
|
|
|
|
|