**Ceci est une ancienne révision du document !**
set nocompatible “ be iMproved, required filetype off ” required
“ set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin()
” let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim'
“ The following are examples of different formats supported. ” Keep Plugin commands between vundle#begin/end. Plugin 'scrooloose/nerdtree'
“Plugin 'Valloric/YouCompleteMe'
“Plugin 'vim-syntastic/syntastic'
“Plugin 'tpope/vim-fugitive' Plugin 'Xuyuanp/nerdtree-git-plugin'
“Plugin 'qbbr/vim-symfony'
“Plugin 'alvan/vim-closetag'
“Plugin 'Eluminae/vim-twig'
” markdown support Plugin 'godlygeek/tabular' Plugin 'plasticboy/vim-markdown'
” All of your Plugins must be added before the following line call vundle#end() ” required filetype plugin indent on ” required
” General colors zenburn “molokai set number set linebreak set showbreak=+++ ” set textwidth=80 set showmatch ” set spell set visualbell
set hlsearch set smartcase set ignorecase set incsearch
set autoindent set expandtab set shiftwidth=4 set smartindent set smarttab set softtabstop=4
“ Advanced set ruler
set undolevels=1000 set backspace=indent,eol,start
” Special files to colorize
au BufRead,BufNewFile *.twig set filetype=html