Skip to content

Instantly share code, notes, and snippets.

@kocoai
Last active July 11, 2019 12:24
Show Gist options
  • Save kocoai/4327191 to your computer and use it in GitHub Desktop.
Save kocoai/4327191 to your computer and use it in GitHub Desktop.
vimrc #vim
"Ressource
"http://ensiwiki.ensimag.fr/index.php/Vimrc_minimal
"http://www.jeoffrey54.com/article126/mon-vimrc-explications#.Uiha4GSsi2x
"http://amix.dk/vim/vimrc.html
"http://stackoverflow.com/questions/164847/what-is-in-your-vimrc
execute pathogen#infect()
"Activer la coloration et l'indentation
syn on
set syntax=on
set tabstop=4
filetype indent plugin on
filetype on
hi Search ctermfg=red cterm=bold
"Désactiver le mode compatibilité
"set nocp
"Activer la souris pour le mode shell
"set mouse=a
"Afficher les parenthèses correspondantes
set showmatch
"Recherche
set hlsearch
set incsearch
set ignorecase
let g:AirlineTheme='powerlineish'
let g:airline_left_sep=''
let g:airline_right_sep=''
let g:airline#extensions#branch#enabled=1
let g:airline#extensions#hunks#enabled=0
set laststatus=2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment