blob: 649bfb1022d7144a05e237712e23527c452a4ec0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
" markdown/php files run this as well
" https://stackoverflow.com/questions/22839269/why-does-vim-default-markdown-ftplugin-source-html-ftplugins-is-there-any-ways
if expand('%:e') ==# 'xml'
let b:prettier_ft_default_args = {
\ 'parser': 'xml',
\ }
endif
augroup Prettier
autocmd!
autocmd BufWritePre *.xml call prettier#Autoformat()
augroup end
|