1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-26 20:40:35 +08:00
2021-06-18 22:42:55 +08:00

12 lines
212 B
VimL
Vendored

function! neoformat#formatters#zig#enabled() abort
return ['zigfmt']
endfunction
function! neoformat#formatters#zig#zigfmt() abort
return {
\ 'exe': 'zig',
\ 'args': ['fmt'],
\ 'replace': 1
\ }
endfunction