1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 13:00:04 +08:00
SpaceVim/bundle/format.nvim/lua/format/ft/rust.lua
2024-04-18 21:28:35 +08:00

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