forked from zenbones-theme/zenbones.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitty.lua
25 lines (25 loc) · 815 Bytes
/
kitty.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---@diagnostic disable: undefined-global
-- selene: allow(undefined_variable)
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),
blurb = description,
url_color = term.bright_magenta,
tab_active_bg = specs.Search.bg,
tab_active_fg = colors.fg,
tab_inactive_bg = specs.StatusLine.bg,
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) }
)
-- selene: deny(undefined_variable)
---@diagnostic enable: undefined-global