spacevim/bundle/format.nvim/lua/format/util.lua

15 lines
206 B
Lua
Raw Normal View History

2024-08-21 14:17:26 +08:00
local M = {}
local nt = require('spacevim.api.notify')
local log = require('spacevim.logger').derive('format')
function M.msg(msg)
nt.notify(msg)
end
function M.info(msg)
log.info(msg)
end
return M