1
0
Fork 0
mirror of https://github.com/folke/lazy.nvim.git synced 2025-04-07 00:06:34 +00:00
lazy.nvim/lua/lazy/status.lua

16 lines
361 B
Lua

local Config = require("lazy.core.config")
local M = {}
function M.updates()
local Checker = require("lazy.manage.checker")
local updates = #Checker.updated
return updates > 0 and (Config.options.ui.icons.plugin .. "" .. updates)
end
function M.has_updates()
local Checker = require("lazy.manage.checker")
return #Checker.updated > 0
end
return M