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

15 lines
438 B
VimL

function! neoformat#formatters#rust#enabled() abort
return ['rustfmt']
endfunction
function! neoformat#formatters#rust#rustfmt() abort
return {
\ 'exe': 'rustfmt',
\ 'args': ['--config hard_tabs=' . (&expandtab ? 'false' : 'true') .
\ ',tab_spaces=' . shiftwidth() .
\ ',max_width=' . &textwidth
\ ],
\ 'stdin': 1,
\ }
endfunction