Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- autocmd FileType haskell nnoremap <buffer> <leader>? :call ale#cursor#ShowCursorDetail()<cr>
- let g:haskell_enable_quantification = 1 " to enable highlighting of `forall`
- let g:haskell_enable_recursivedo = 1 " to enable highlighting of `mdo` and `rec`
- let g:haskell_enable_arrowsyntax = 1 " to enable highlighting of `proc`
- let g:haskell_enable_pattern_synonyms = 1 " to enable highlighting of `pattern`
- let g:haskell_enable_typeroles = 1 " to enable highlighting of type roles
- let g:haskell_enable_static_pointers = 1 " to enable highlighting of `static`
- let g:haskell_backpack = 1 " to enable highlighting of backpack keywords
- let g:airline#extensions#ale#enabled = 1
- set rtp+=~/.vim/bundle/Vundle.vim
- call vundle#begin()
- Plugin 'gmarik/Vundle.vim'
- Plugin 'vim-airline/vim-airline'
- Plugin 'dense-analysis/ale'
- call vundle#end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement