mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-24 02:37:06 +08:00
12 lines
295 B
VimL
12 lines
295 B
VimL
function! neoformat#formatters#vue#enabled() abort
|
|
return ['prettier']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#vue#prettier() abort
|
|
return {
|
|
\ 'exe': 'prettier',
|
|
\ 'args': ['--stdin-filepath', '"%:p"', '--parser', 'vue'],
|
|
\ 'stdin': 1
|
|
\ }
|
|
endfunction
|