22 lines
		
	
	
		
			528 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			528 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
 | 
						|
" ------ [ 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
 | 
						|
 | 
						|
 | 
						|
" ------ [ Gestion de la correction d'orthographe ] ----------------------------------------------
 | 
						|
setlocal nospell
 | 
						|
setlocal spelllang=fr
 | 
						|
 | 
						|
 | 
						|
" ------ [ Gestion des plugins ] ----------------------------------------------
 | 
						|
execute pathogen#infect()
 | 
						|
 |