mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-26 20:40:35 +08:00
8 lines
210 B
VimL
Vendored
8 lines
210 B
VimL
Vendored
function! neoformat#formatters#proto#enabled() abort
|
|
return ['clangformat']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#proto#clangformat() abort
|
|
return neoformat#formatters#c#clangformat()
|
|
endfunction
|