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
|
2017-12-30 05:55:40 -05:00
|
|
|
|
|
|
|
let g:python_highlight_all = 1
|
2017-12-30 09:53:17 -05:00
|
|
|
|
|
|
|
augroup filetypedetect
|
|
|
|
if v:version < 704
|
|
|
|
" NOTE: this line fixes an issue with the default system-wide lisp ftplugin
|
|
|
|
" which didn't define b:undo_ftplugin on older Vim versions
|
|
|
|
" (*.jl files are recognized as lisp)
|
|
|
|
autocmd BufRead,BufNewFile *.jl let b:undo_ftplugin = "setlocal comments< define< formatoptions< iskeyword< lisp<"
|
|
|
|
endif
|
|
|
|
|
|
|
|
autocmd BufRead,BufNewFile *.jl set filetype=julia
|
|
|
|
augroup END
|