mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
chezmoi: reorganise repo
This commit is contained in:
parent
b391e03c87
commit
67a78879db
278 changed files with 102 additions and 182 deletions
45
home/dot_config/wezterm/keymaps/qwerty.lua
Normal file
45
home/dot_config/wezterm/keymaps/qwerty.lua
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue