blob: 019afbd99a562cad253ce4607ed3d13918d486e0 (
plain)
1
2
3
4
5
6
7
8
|
local M = {}
M.err = function(e) vim.notify(e, vim.log.levels.ERROR) end
M.info = function(e) vim.notify(e, vim.log.levels.INFO) end
M.debug = function(e) vim.notify(e, vim.log.levels.DEBUG) end
M.warn = function(e) vim.notify(e, vim.log.levels.WARN) end
return M
|