Last active
December 14, 2015 00:59
-
-
Save aliou/5002585 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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