all repos

dotfiles @ d1af9278c54f590380d35727fc4577dac262bc60

my dotfiles

config/lvim/lua/u/package-info.lua (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
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