summaryrefslogtreecommitdiffstats
path: root/ftdetect
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2017-03-24 16:10:53 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2017-03-24 16:10:53 +0100
commitef369d45a505403587ea0bae30ce6768ba51398c (patch)
tree9c7d077bc7f4a5849aa8837a682e828216e7be12 /ftdetect
parent64938393bd49f459a3c64b8342c714caa836e6b3 (diff)
downloadvim-polyglot-ef369d45a505403587ea0bae30ce6768ba51398c.tar.gz
vim-polyglot-ef369d45a505403587ea0bae30ce6768ba51398c.zip
fix: Re-introduce config.vim into buildv2.15.1
Diffstat (limited to 'ftdetect')
-rw-r--r--ftdetect/polyglot.vim11
1 files changed, 11 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim
index 63248b95..f4bd7e95 100644
--- a/ftdetect/polyglot.vim
+++ b/ftdetect/polyglot.vim
@@ -1,3 +1,14 @@
+" Enable jsx syntax by default
+if !exists('g:jsx_ext_required')
+ let g:jsx_ext_required = 0
+endif
+
+" Disable json concealing by default
+if !exists('g:vim_json_syntax_conceal')
+ let g:vim_json_syntax_conceal = 0
+endif
+
+let g:filetype_euphoria = 'elixir'
augroup filetypedetect
" apiblueprint:sheerun/apiblueprint.vim
autocmd BufReadPost,BufNewFile *.apib set filetype=apiblueprint