mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-26 20:40:35 +08:00
12 lines
271 B
VimL
Vendored
12 lines
271 B
VimL
Vendored
function! neoformat#formatters#pug#enabled() abort
|
|
return ['pugbeautifier']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#pug#pugbeautifier() abort
|
|
return {
|
|
\ 'exe': 'pug-beautifier',
|
|
\ 'args': ['-s 2'],
|
|
\ 'stdin': 1,
|
|
\ }
|
|
endfunction
|