chezmoi: reorganise repo

This commit is contained in:
js0ny 2025-09-27 15:28:09 +01:00
parent b391e03c87
commit 67a78879db
278 changed files with 102 additions and 182 deletions

View file

@ -1,67 +0,0 @@
local M = {}
local wezterm = require("wezterm")
local act = wezterm.action
-- #region Leader Keymaps
M.common = {
{
key = "q",
mods = "LEADER",
action = act.SendKey({ key = "q", mods = "CTRL" }),
},
-- Windows Management
{ -- leader keys
key = "|",
mods = "LEADER|SHIFT",
action = act.SplitHorizontal({ domain = "CurrentPaneDomain" }),
},
{
key = "-",
mods = "LEADER",
action = act.SplitVertical({ domain = "CurrentPaneDomain" }),
},
{
key = "h",
mods = "LEADER",
action = act.ActivatePaneDirection("Left"),
},
{
key = "H",
mods = "LEADER",
action = act.AdjustPaneSize({ "Left", 5 }),
},
{
key = "/",
mods = "LEADER",
action = act.Search({ Regex = "" }),
},
{
key = "?",
mods = "LEADER|SHIFT",
action = act.Search({ CaseSensitiveString = "" }),
},
{
key = ";",
mods = "LEADER",
action = act.ShowLauncher,
},
{
key = ":",
mods = "LEADER|SHIFT",
action = act.ActivateCommandPalette,
},
{
key = "r",
mods = "LEADER",
action = act.ActivateKeyTable({
name = "resize_pane",
one_shot = false,
timeout_milliseconds = 2000,
}),
},
}
-- #endregion
return M