aboutsummaryrefslogtreecommitdiff
path: root/ftplugin/html.vim
blob: e27828a2413ce8c0f87f1b2f2dcd670ac531bef4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" markdown files run this as well
" https://stackoverflow.com/questions/22839269/why-does-vim-default-markdown-ftplugin-source-html-ftplugins-is-there-any-ways
if &ft !~# 'markdown'
  let b:prettier_ft_default_args = {
    \ 'parser': 'html',
    \ }
endif

augroup Prettier
  autocmd!
  if get(g:, 'prettier#autoformat')
    autocmd BufWritePre *.html call prettier#Autoformat()
  endif
augroup end