aboutsummaryrefslogtreecommitdiff
path: root/ftplugin/json.vim
blob: b5751cae6cc0719d5e7f3baea729462af5c675dd (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 <buffer> call prettier#Autoformat()
  endif
augroup end