blob: 8413ded0cbbfcb9378dfb3d4ac577f33f0028914 (
plain)
1
2
3
4
5
6
7
8
9
10
|
let b:prettier_ft_default_args = {
\ 'parser': 'php',
\ }
augroup Prettier
autocmd!
if get(g:, 'prettier#autoformat')
autocmd BufWritePre *.php call prettier#Autoformat()
endif
augroup end
|