aboutsummaryrefslogtreecommitdiff
path: root/ftplugin/typescript.vim
blob: 8151c09e35c0fb9e5840a2498e2c06ed91567bf9 (plain)
1
2
3
4
5
6
7
8
9
10
let b:prettier_ft_default_args = {
  \ 'parser': 'typescript'
  \ }

augroup Prettier
  autocmd!
  if g:prettier#autoformat
    autocmd BufWritePre <buffer> call prettier#Autoformat()
  endif
augroup end