FollieHiyuki-dotfiles/home/.config/nvim/plug-config/polyglot.vim
2021-02-13 19:28:59 +03:00

20 lines
855 B
VimL

let g:polyglot_disabled = ['csv']
" Haskell
" let g:haskell_classic_highlighting = 1
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
" Javascript
let g:javascript_plugin_jsdoc = 1
let g:javascript_plugin_flow = 1
let g:javascript_plugin_ngdoc = 1
" jsx
let g:vim_jsx_pretty_colorful_config = 1
" Python
let g:python_highlight_all=1