Add xdc syntax, closes #393

This commit is contained in:
Adam Stankiewicz
2019-04-23 11:38:41 +02:00
parent 415261dd1f
commit 83bd298476
4 changed files with 208 additions and 1 deletions

View File

@@ -1425,3 +1425,11 @@ au BufNewFile,BufRead *.vue,*.wpy setf vue
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'xdc') == -1
augroup filetypedetect
" xdc, from xdc.vim in amal-khailtash/vim-xdc-syntax
" xdc
autocmd BufNewFile,BufRead *.xdc setfiletype xdc
augroup end
endif