add wezterm runner
This commit is contained in:
@@ -7,8 +7,6 @@ run(
|
||||
author = "Michael Chris Lopez",
|
||||
license = "MIT",
|
||||
upstream = string.format("https://github.com/mcchrish/zenbones.nvim/raw/main/extras/kitty/%s.conf", name),
|
||||
selection_bg = specs.Visual.bg.hex,
|
||||
selection_fg = colors.fg,
|
||||
url_color = term[13].hex,
|
||||
tab_active_bg = specs.Search.bg.hex,
|
||||
tab_active_fg = colors.fg,
|
||||
|
||||
12
lua/zenbones/shipwright/runners/wezterm.lua
Normal file
12
lua/zenbones/shipwright/runners/wezterm.lua
Normal file
@@ -0,0 +1,12 @@
|
||||
run(
|
||||
{ specs, p, term },
|
||||
transform.colorscheme_to_term_colors,
|
||||
function(colors)
|
||||
return vim.tbl_extend("keep", colors, {
|
||||
cursor_border = specs.Cursor.fg.hex,
|
||||
})
|
||||
end,
|
||||
contrib.wezterm,
|
||||
{ prepend, "# This file is auto-generated by shipwright.nvim" },
|
||||
{ overwrite, string.format("extras/wezterm/%s.toml", name:sub(1, 1):upper() .. name:sub(2)) }
|
||||
)
|
||||
Reference in New Issue
Block a user