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

augroup Prettier
  autocmd!
  if g:prettier#autoformat
    autocmd BufWritePre *.lua call prettier#Autoformat()
  endif
augroup end