mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-14 06:18:00 +08:00
16 lines
170 B
Lua
16 lines
170 B
Lua
|
local M = {}
|
||
|
|
||
|
function M.enabled()
|
||
|
return { 'rustfmt' }
|
||
|
end
|
||
|
|
||
|
function M.rustfmt(opt)
|
||
|
return {
|
||
|
exe = 'rustfmt',
|
||
|
args = {},
|
||
|
stdin = true,
|
||
|
}
|
||
|
end
|
||
|
|
||
|
return M
|