dot-files/vim/bundle/prettier/ftplugin/vue.vim

11 lines
195 B
VimL

let b:prettier_ft_default_args = {
\ 'parser': 'vue',
\ }
augroup Prettier
autocmd!
if g:prettier#autoformat
autocmd BufWritePre *.vue call prettier#Autoformat()
endif
augroup end