Files
vim-polyglot/after/indent/javascript-1.vim
2020-10-04 21:19:51 +02:00

10 lines
221 B
VimL

if !exists('g:polyglot_disabled') || (index(g:polyglot_disabled, 'javascript') == -1 && index(g:polyglot_disabled, 'jsx') == -1)
if get(g:, 'vim_jsx_pretty_disable_js', 0)
finish
endif
source <sfile>:h/jsx.vim
endif