Skip to content

Commit e59dc37

Browse files
committed
feat: util.info
1 parent 7288962 commit e59dc37

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

lua/lazy/core/util.lua

+6
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,12 @@ function M.error(msg)
185185
})
186186
end
187187

188+
function M.info(msg)
189+
vim.notify(msg, vim.log.levels.INFO, {
190+
title = "lazy.nvim",
191+
})
192+
end
193+
188194
function M._dump(value, result)
189195
local t = type(value)
190196
if t == "number" or t == "boolean" then

lua/lazy/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function M.setup(opts)
4444
-- Module.add_module(Config.options.package_path .. "/opt/nvim-cmp/lua")
4545
-- Module.add_module(Config.options.package_path .. "/opt/cmp-buffer/lua")
4646
vim.schedule(function()
47-
vim.notify("Reloading")
47+
Util.info("Reloading...")
4848
end)
4949
Util.track("normalize")
5050
Plugin.normalize(require(Config.options.plugins))

0 commit comments

Comments
 (0)