Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
815 B
Lua
Raw Permalink Normal View History

2021-11-07 08:16:33 +08:00
---@diagnostic disable: undefined-global
2021-11-06 12:04:23 +08:00
-- selene: allow(undefined_variable)
2021-11-05 14:43:28 +08:00
run(
{ specs, p, term },
transform.colorscheme_to_term_colors,
function(colors)
return vim.tbl_extend("keep", colors, {
name = name,
author = "Michael Chris Lopez",
license = "MIT",
upstream = string.format("https://github.com/mcchrish/zenbones.nvim/raw/main/extras/kitty/%s.conf", name),
2021-11-14 14:12:06 +08:00
blurb = description,
url_color = term.bright_magenta,
2021-11-06 12:04:23 +08:00
tab_active_bg = specs.Search.bg,
2021-11-05 14:43:28 +08:00
tab_active_fg = colors.fg,
2021-11-06 12:04:23 +08:00
tab_inactive_bg = specs.StatusLine.bg,
2021-11-05 14:43:28 +08:00
tab_inactive_fg = colors.fg,
})
end,
contrib.kitty,
{ prepend, "# This file is auto-generated by shipwright.nvim" },
{ overwrite, string.format("extras/kitty/%s.conf", name) }
)
2021-11-06 12:04:23 +08:00
-- selene: deny(undefined_variable)
2021-11-07 08:16:33 +08:00
---@diagnostic enable: undefined-global