config/lvim/lua/user/package-info.lua (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
local M = {}
M.setup = function()
require("package-info").setup {
{
autostart = true,
colors = {
up_to_date = "#3C4048",
outdated = "#6ec0fa",
},
icons = {
enable = true,
style = {
up_to_date = "| ",
outdated = "| ",
},
},
},
}
end
return M
|