2015-03-01 20:44:10 +01:00
|
|
|
|
|
|
|
" ------ [ Gestion des options ] ----------------------------------------------
|
|
|
|
" We don't want vi compatibility.
|
|
|
|
set nocompatible
|
|
|
|
|
|
|
|
" we have a fast terminal
|
|
|
|
set ttyfast
|
|
|
|
|
|
|
|
|
|
|
|
" ------ [ Gestion de la coloration syntaxique ] ----------------------------------------------
|
|
|
|
syntax on
|
|
|
|
|
2015-03-01 20:44:49 +01:00
|
|
|
|
|
|
|
" ------ [ Gestion de la correction d'orthographe ] ----------------------------------------------
|
|
|
|
setlocal nospell
|
|
|
|
setlocal spelllang=fr
|
|
|
|
|
2015-03-01 20:44:56 +01:00
|
|
|
|
|
|
|
" ------ [ Gestion des plugins ] ----------------------------------------------
|
|
|
|
execute pathogen#infect()
|
|
|
|
|