blob: c5f62fc9ff5ed8501237976a80f96eb0b3825195 (
plain)
1
2
3
4
5
6
7
8
9
10
|
let b:prettier_ft_default_args = {
\ 'parser': 'ruby',
\ }
augroup Prettier
autocmd!
if get(g:, 'prettier#autoformat')
autocmd BufWritePre *.ruby call prettier#Autoformat()
endif
augroup end
|