Dotfiles.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
266 B

if exists("g:__HASKELLFOLD_VIM__")
finish
endif
let g:__HASKELLFOLD_VIM__ = 1
fun! SetHaskellFolding() "{{{
setlocal foldexpr=haskellFold#HaskellFold(v:lnum)
setlocal foldtext=haskellFold#HaskellFoldText()
setlocal foldmethod=expr
endfunction "}}}