37 lines
1.8 KiB
Lua
37 lines
1.8 KiB
Lua
local act = require('wezterm').action
|
|
|
|
local leader_key = { key = 'g', mods = 'CTRL', timeout_milliseconds = 1000 }
|
|
local keybinds = {
|
|
{ key = 'c', mods = 'META', action = act.CopyTo('Clipboard') },
|
|
{ key = 'v', mods = 'META', action = act.PasteFrom('Clipboard') },
|
|
-- themes
|
|
{ key = 'f', mods = 'LEADER', action = act.EmitEvent('override-fonts') },
|
|
{ key = 't', mods = 'LEADER', action = act.EmitEvent('override-theme') },
|
|
{ key = 'r', mods = 'LEADER', action = act.EmitEvent('override-reset') },
|
|
-- tabs
|
|
{ key = 'c', mods = 'LEADER', action = act.SpawnTab('DefaultDomain') },
|
|
{ key = 'n', mods = 'LEADER', action = act.ActivateTabRelative( 1) },
|
|
{ key = 'p', mods = 'LEADER', action = act.ActivateTabRelative(-1) },
|
|
-- panes
|
|
{ key = 's', mods = 'LEADER', action = act.SplitVertical { domain = 'CurrentPaneDomain' } },
|
|
{ key = 'v', mods = 'LEADER', action = act.SplitHorizontal { domain = 'CurrentPaneDomain' } },
|
|
{ key = 'h', mods = 'LEADER', action = act.ActivatePaneDirection('Left') },
|
|
{ key = 'j', mods = 'LEADER', action = act.ActivatePaneDirection('Down') },
|
|
{ key = 'k', mods = 'LEADER', action = act.ActivatePaneDirection('Up') },
|
|
{ key = 'l', mods = 'LEADER', action = act.ActivatePaneDirection('Right') },
|
|
{ key = 'u', mods = 'LEADER', action = act.RotatePanes('Clockwise') },
|
|
{ key = 'i', mods = 'LEADER', action = act.RotatePanes('CounterClockwise') },
|
|
{ key = 'Return', mods = 'LEADER', action = act.TogglePaneZoomState },
|
|
{ key = 'Space', mods = 'LEADER', action = act.PaneSelect },
|
|
}
|
|
for i = 1, 9 do
|
|
table.insert(
|
|
keybinds,
|
|
{ key = tostring(i), mods = 'LEADER', action = act.ActivateTab(i - 1) }
|
|
)
|
|
end
|
|
|
|
return {
|
|
leader = leader_key,
|
|
keybinds = keybinds
|
|
}
|