wezterm update
This commit is contained in:
parent
c8f8a268a6
commit
5637a9e614
1 changed files with 4 additions and 3 deletions
|
@ -134,6 +134,7 @@ return {
|
||||||
bold_brightens_ansi_colors = false,
|
bold_brightens_ansi_colors = false,
|
||||||
allow_square_glyphs_to_overflow_width = "Always",
|
allow_square_glyphs_to_overflow_width = "Always",
|
||||||
font_size = 13.5,
|
font_size = 13.5,
|
||||||
|
command_palette_font_size = 13.5,
|
||||||
line_height = 1.0,
|
line_height = 1.0,
|
||||||
cell_width = 0.95,
|
cell_width = 0.95,
|
||||||
initial_cols = 132,
|
initial_cols = 132,
|
||||||
|
@ -184,8 +185,8 @@ return {
|
||||||
term = "wezterm",
|
term = "wezterm",
|
||||||
disable_default_key_bindings = true,
|
disable_default_key_bindings = true,
|
||||||
keys = {
|
keys = {
|
||||||
{ key = "c", mods = "ALT|SHIFT", action = act({ CopyTo = "ClipboardAndPrimarySelection" }) },
|
{ key = "c", mods = "ALT|SHIFT", action = act.CopyTo("ClipboardAndPrimarySelection") },
|
||||||
{ key = "v", mods = "ALT|SHIFT", action = "Paste" },
|
{ key = "v", mods = "ALT|SHIFT", action = act.PasteFrom("PrimarySelection") },
|
||||||
{ key = "0", mods = "CTRL", action = "ResetFontSize" },
|
{ key = "0", mods = "CTRL", action = "ResetFontSize" },
|
||||||
{ key = "-", mods = "CTRL", action = "DecreaseFontSize" },
|
{ key = "-", mods = "CTRL", action = "DecreaseFontSize" },
|
||||||
{ key = "=", mods = "CTRL", action = "IncreaseFontSize" },
|
{ key = "=", mods = "CTRL", action = "IncreaseFontSize" },
|
||||||
|
@ -206,7 +207,7 @@ return {
|
||||||
{ key = "0", mods = "ALT", action = act.EmitEvent("tab-10") },
|
{ key = "0", mods = "ALT", action = act.EmitEvent("tab-10") },
|
||||||
{ key = "RightArrow", mods = "CTRL", action = act.ActivateTabRelative(1) },
|
{ key = "RightArrow", mods = "CTRL", action = act.ActivateTabRelative(1) },
|
||||||
{ key = "LeftArrow", mods = "CTRL", action = act.ActivateTabRelative(-1) },
|
{ key = "LeftArrow", mods = "CTRL", action = act.ActivateTabRelative(-1) },
|
||||||
{ key = "l", mods = "ALT", action = wezterm.action.ShowLauncher },
|
{ key = "l", mods = "ALT", action = wezterm.action.ActivateCommandPalette },
|
||||||
{ key = "Backspace", mods = "ALT", action = act.SwitchWorkspaceRelative(1) },
|
{ key = "Backspace", mods = "ALT", action = act.SwitchWorkspaceRelative(1) },
|
||||||
{ key = "UpArrow", mods = "SHIFT", action = act.ScrollByLine(-1) },
|
{ key = "UpArrow", mods = "SHIFT", action = act.ScrollByLine(-1) },
|
||||||
{ key = "DownArrow", mods = "SHIFT", action = act.ScrollByLine(1) },
|
{ key = "DownArrow", mods = "SHIFT", action = act.ScrollByLine(1) },
|
||||||
|
|
Loading…
Reference in a new issue