Skip to content

Instantly share code, notes, and snippets.

@aliou
Last active December 14, 2015 00:59
Show Gist options
  • Save aliou/5002585 to your computer and use it in GitHub Desktop.
Save aliou/5002585 to your computer and use it in GitHub Desktop.
language time en_us
colorscheme molokai
if has("gui_macvim")
set guifont=Menlo:h11
endif
cnoremap w= w!
cnoremap q= q!
autocmd FileType clojure autocmd InsertLeave * silent! wa
function! EpithechFolds(lnum)
" Epitech header.
if (lnum < 10)
return "1"
else
return "0"
endif
" Foldmarker
endfunction
autocmd FileType c,cpp setlocal foldmethod=expr foldexpr=EpithechFolds(v:lnum)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment