2016-07-26 07:47:20 -04:00
|
|
|
" Enable jsx syntax by default
|
|
|
|
if !exists('g:jsx_ext_required')
|
|
|
|
let g:jsx_ext_required = 0
|
|
|
|
endif
|
2016-07-26 07:50:28 -04:00
|
|
|
|
|
|
|
" Disable json concealing by default
|
|
|
|
if !exists('g:vim_json_syntax_conceal')
|
|
|
|
let g:vim_json_syntax_conceal = 0
|
|
|
|
endif
|
2017-02-02 16:11:43 -05:00
|
|
|
|
|
|
|
let g:filetype_euphoria = 'elixir'
|
2017-11-19 15:51:33 -05:00
|
|
|
|
|
|
|
augroup filetypedetect
|
|
|
|
autocmd BufNewFile,BufReadPost *.vb setlocal filetype=vbnet
|
|
|
|
augroup END
|