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