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

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