aboutsummaryrefslogtreecommitdiff
path: root/ftplugin/javascript.vim
blob: dbe0694b1f616051874ff50fbe9d25efe32616bc (plain)
1
2
3
4
5
6
augroup Prettier
  autocmd!
  if get(g:, 'prettier#autoformat')
    autocmd BufWritePre *.js,*.jsx,*.mjs call prettier#Autoformat()
  endif
augroup end