1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 17:50:04 +08:00
SpaceVim/bundle/format.nvim/lua/format/ft/lua.lua
2024-04-16 13:54:12 +08:00

16 lines
187 B
Lua

local M = {}
function M.enabled()
return { 'stylua' }
end
function M.stylua(opt)
return {
exe = 'stylua',
args = { '-' },
stdin = true,
}
end
return M