dotfiles/config/lvim/lua/u/package-info.lua
2021-09-11 15:59:44 +03:00

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