Update dotfiles (2026-03-07 22:52:54)

This commit is contained in:
Zacharias-Brohn
2026-03-07 22:52:54 +01:00
parent 778d724f9d
commit 170d015464
8 changed files with 225 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
local M = {}
function M.setup(config, act)
config.keys = {
{ key = "LeftArrow", mods = "CTRL|ALT", action = act.ActivateTabRelative(-1) },
{ key = "RightArrow", mods = "CTRL|ALT", action = act.ActivateTabRelative(1) },
{ key = "-", mods = "CTRL|ALT", action = act.CloseCurrentPane({ confirm = false }) },
{ key = "+", mods = "CTRL|ALT", action = act.SpawnTab("CurrentPaneDomain") },
{ key = "F1", action = act.SplitVertical },
{ key = "F2", action = act.SplitHorizontal },
{
key = "LeftArrow",
mods = "ALT",
action = act.ActivatePaneDirection("Left"),
},
{
key = "RightArrow",
mods = "ALT",
action = act.ActivatePaneDirection("Right"),
},
{
key = "UpArrow",
mods = "ALT",
action = act.ActivatePaneDirection("Up"),
},
{
key = "DownArrow",
mods = "ALT",
action = act.ActivatePaneDirection("Down"),
},
}
end
return M