Advertisement
Guest User

Untitled

a guest
May 23rd, 2020
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. autocmd FileType haskell nnoremap <buffer> <leader>? :call ale#cursor#ShowCursorDetail()<cr>
  2. let g:haskell_enable_quantification = 1 " to enable highlighting of `forall`
  3. let g:haskell_enable_recursivedo = 1 " to enable highlighting of `mdo` and `rec`
  4. let g:haskell_enable_arrowsyntax = 1 " to enable highlighting of `proc`
  5. let g:haskell_enable_pattern_synonyms = 1 " to enable highlighting of `pattern`
  6. let g:haskell_enable_typeroles = 1 " to enable highlighting of type roles
  7. let g:haskell_enable_static_pointers = 1 " to enable highlighting of `static`
  8. let g:haskell_backpack = 1 " to enable highlighting of backpack keywords
  9.  
  10. let g:airline#extensions#ale#enabled = 1
  11.  
  12. set rtp+=~/.vim/bundle/Vundle.vim
  13. call vundle#begin()
  14.  
  15. Plugin 'gmarik/Vundle.vim'
  16. Plugin 'vim-airline/vim-airline'
  17. Plugin 'dense-analysis/ale'
  18.  
  19. call vundle#end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement