We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7288962 commit e59dc37Copy full SHA for e59dc37
lua/lazy/core/util.lua
@@ -185,6 +185,12 @@ function M.error(msg)
185
})
186
end
187
188
+function M.info(msg)
189
+ vim.notify(msg, vim.log.levels.INFO, {
190
+ title = "lazy.nvim",
191
+ })
192
+end
193
+
194
function M._dump(value, result)
195
local t = type(value)
196
if t == "number" or t == "boolean" then
lua/lazy/init.lua
@@ -44,7 +44,7 @@ function M.setup(opts)
44
-- Module.add_module(Config.options.package_path .. "/opt/nvim-cmp/lua")
45
-- Module.add_module(Config.options.package_path .. "/opt/cmp-buffer/lua")
46
vim.schedule(function()
47
- vim.notify("Reloading")
+ Util.info("Reloading...")
48
end)
49
Util.track("normalize")
50
Plugin.normalize(require(Config.options.plugins))
0 commit comments