mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
b080c54e5b
Also deprecate neovim config.
20 lines
857 B
VimL
20 lines
857 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
|