spacevim/bundle/format.nvim/lua/format/ft/markdown.lua

17 lines
243 B
Lua
Raw Normal View History

2024-08-21 14:17:26 +08:00
local M = {}
function M.enabled()
return { 'prettier' }
end
function M.prettier(opt)
return {
exe = vim.fn.exepath('prettier'),
name = 'prettier',
args = {'--stdin-filepath', opt.filepath},
stdin = true
}
end
return M