Created
August 24, 2012 16:01
-
-
Save paulmooring/3452304 to your computer and use it in GitHub Desktop.
vimrc snippet
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
"""""""""""""""""""""""""""""" | |
" => Erlang section | |
"""""""""""""""""""""""""""""" | |
let g:erlang_man_path='/usr/local/share/man' | |
let erlang_show_errors = 0 | |
let erlang_skel_header = {'author': 'Paul Mooring <[email protected]>'} | |
au FileType erlang call ErlangFold() | |
function! ErlangFold() | |
let erlang_folding = 1 | |
setl foldmethod=syntax | |
set foldlevelstart=1 | |
endfunction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment