feat(wezterm): native opacity, unicode picker

This commit is contained in:
winston 2022-11-29 05:12:51 +01:00
parent e403f6d2eb
commit ea961b06af
Signed by: winston
GPG key ID: 3786770EDBC2B481

View file

@ -335,6 +335,14 @@ return {
{ key = "t", mods = "SUPER", action = act.SpawnTab("CurrentPaneDomain") }, { key = "t", mods = "SUPER", action = act.SpawnTab("CurrentPaneDomain") },
{ key = "w", mods = "SHIFT|CTRL", action = act.CloseCurrentTab({ confirm = true }) }, { key = "w", mods = "SHIFT|CTRL", action = act.CloseCurrentTab({ confirm = true }) },
{ key = "w", mods = "SUPER", action = act.CloseCurrentTab({ confirm = true }) }, { key = "w", mods = "SUPER", action = act.CloseCurrentTab({ confirm = true }) },
{
key = "u",
mods = "SHIFT|CTRL",
action = act.CharSelect({
copy_on_select = true,
copy_to = "ClipboardAndPrimarySelection",
}),
},
}, },
-- }}} -- }}}
-- font -- font
@ -345,6 +353,7 @@ return {
tab_max_width = 32, tab_max_width = 32,
-- window -- window
window_decorations = "RESIZE", window_decorations = "RESIZE",
window_background_opacity = 0.85,
window_padding = { window_padding = {
left = 0, left = 0,
right = 0, right = 0,