X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/2c3ee9c15838126db44e3ad937c4caa8ffa8bbd8..db4fd9f943db71a5baa7c86580b86d0d809c15dd:/vim/vimrc?ds=sidebyside diff --git a/vim/vimrc b/vim/vimrc index 211a64b..310e603 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -88,6 +88,16 @@ Plug 'vim-scripts/syntaxrange' let g:org_agenda_files = ['~/org/*.org'] +Plug 'neovimhaskell/haskell-vim' " {{{2 +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 +" }}} + call plug#end() filetype plugin indent on @@ -559,7 +569,7 @@ autocmd BufReadPost fugitive://* set bufhidden=delete nnoremap gs :Git nnoremap gd :Gdiffsplit -nnoremap gc :G commit -v +nnoremap gc :tab G commit -v nnoremap ga :Gwrite nnoremap gb :G blame