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