mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
14 lines
278 B
Lua
14 lines
278 B
Lua
local M = {}
|
|
|
|
M.config = 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
|