mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
22 lines
353 B
Lua
22 lines
353 B
Lua
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
|