dotfiles/config/lvim/lua/user/package-info.lua
2021-08-20 19:23:02 +03:00

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