chezmoi: awesome, fish, screen, wezterm, yazi

This commit is contained in:
js0ny 2025-09-27 12:22:41 +01:00
parent 2cbf244d7b
commit 295f94ddb9
27 changed files with 613 additions and 5 deletions

View file

@ -1,45 +0,0 @@
local M = {}
local wezterm = require("wezterm")
local act = wezterm.action
M.qwerty = {
{
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 = "J",
mods = "LEADER",
action = act.AdjustPaneSize({ "Down", 5 }),
},
{
key = "K",
mods = "LEADER",
action = act.AdjustPaneSize({ "Up", 5 }),
},
{
key = "L",
mods = "LEADER",
action = act.AdjustPaneSize({ "Right", 5 }),
},
}
local leader_common = require("keymaps.leaders").common
for _, v in ipairs(leader_common) do
table.insert(M.leader, v)
end
return M