mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-19 04:46:45 +00:00
feat: util.info
This commit is contained in:
parent
72889623af
commit
e59dc377d5
2 changed files with 7 additions and 1 deletions
|
@ -185,6 +185,12 @@ function M.error(msg)
|
|||
})
|
||||
end
|
||||
|
||||
function M.info(msg)
|
||||
vim.notify(msg, vim.log.levels.INFO, {
|
||||
title = "lazy.nvim",
|
||||
})
|
||||
end
|
||||
|
||||
function M._dump(value, result)
|
||||
local t = type(value)
|
||||
if t == "number" or t == "boolean" then
|
||||
|
|
|
@ -44,7 +44,7 @@ function M.setup(opts)
|
|||
-- Module.add_module(Config.options.package_path .. "/opt/nvim-cmp/lua")
|
||||
-- Module.add_module(Config.options.package_path .. "/opt/cmp-buffer/lua")
|
||||
vim.schedule(function()
|
||||
vim.notify("Reloading")
|
||||
Util.info("Reloading...")
|
||||
end)
|
||||
Util.track("normalize")
|
||||
Plugin.normalize(require(Config.options.plugins))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue