Skip to content

Instantly share code, notes, and snippets.

@cboin
Created May 12, 2015 08:29
Show Gist options
  • Save cboin/364dab2064da01d26ac9 to your computer and use it in GitHub Desktop.
Save cboin/364dab2064da01d26ac9 to your computer and use it in GitHub Desktop.
Vimrc
""""""""""""""""""""""""""""""""
" vimrc de Clément Boin - 2015 "
" "
""""""""""""""""""""""""""""""""
" On charge Pathogen
call pathogen#infect()
filetype plugin on
" On veut la numérotation des ligne
syntax enable
colorscheme molokai
" On veut la coloration syntaxique
set number
" On ne tape plus à l'aveugle !
set showcmd
" De tout, tu te souviendras
set history=100
" On retrouver une parenthèse perdue
set showmatch
" Aide moi a trouvais mes recherches !
set hlsearch
set incsearch
" Une détection des fichiers parfaite
filetype on
" Indentation
set tabstop=4
set shiftwidth=4
set smarttab
" Activation de la déctétion de Go!
let g:go_disable_autoinstall = 0
" Activation de neocomplete
let g:neocomplete#enable_at_startup = 1
" Activation du file broswer
map <C-n> :NERDTreeToggle<CR>
nmap <F8> :TagbarToggle<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment