diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2016-07-26 13:47:20 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-07-26 13:52:30 +0200 |
commit | 7dd62806a06af3cf2410cd8a4f83205269f279de (patch) | |
tree | 9368759a1a15595b0940c0fd0b000c6c102c36ad /ftdetect | |
parent | 6a823fb3af595051b3a821496ce2a93aa51fa076 (diff) | |
download | vim-polyglot-7dd62806a06af3cf2410cd8a4f83205269f279de.tar.gz vim-polyglot-7dd62806a06af3cf2410cd8a4f83205269f279de.zip |
Enable jsx by default
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 8f343523..c6e16496 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -1,3 +1,7 @@ +" Enable jsx syntax by default +if !exists('g:jsx_ext_required') + let g:jsx_ext_required = 0 +endif " ftdetect/ansible.vim if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ansible') == -1 |