mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-24 02:37:06 +08:00
12 lines
212 B
VimL
12 lines
212 B
VimL
function! neoformat#formatters#zig#enabled() abort
|
|
return ['zigfmt']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#zig#zigfmt() abort
|
|
return {
|
|
\ 'exe': 'zig',
|
|
\ 'args': ['fmt'],
|
|
\ 'replace': 1
|
|
\ }
|
|
endfunction
|