fix: Re-introduce config.vim into build

This commit is contained in:
Adam Stankiewicz 2017-03-24 16:10:53 +01:00
parent 64938393bd
commit ef369d45a5
No known key found for this signature in database
GPG Key ID: A62480DCEAC884DF
2 changed files with 14 additions and 0 deletions

3
build
View File

@ -29,6 +29,9 @@ download() {
extract() {
printf "\n"
cat config.vim >> tmp/polyglot.vim
for pack in $1; do
name="$(printf "$pack" | cut -d ':' -f 1)"
path="$(printf "$pack" | cut -d ':' -f 2)"

View File

@ -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