Add more Slambda chords & disable Wezterm keybind
In particular, `alt+enter` is a keybind in `catgirl` which I couldn't access because of the default `wezterm` keybinds
This commit is contained in:
parent
feaf49d8e3
commit
ced418a65b
|
@ -76,18 +76,19 @@ config.enable_csi_u_key_encoding = true -- For some reason I need this for all k
|
||||||
-- }}}
|
-- }}}
|
||||||
-- }}}
|
-- }}}
|
||||||
-- {{{ Keybinds
|
-- {{{ Keybinds
|
||||||
|
local function unmap(key, mods)
|
||||||
|
return {
|
||||||
|
key = key,
|
||||||
|
mods = mods,
|
||||||
|
action = wezterm.action.DisableDefaultAssignment,
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
config.keys = {
|
config.keys = {
|
||||||
-- {{{ Disable certain default keybinds
|
-- {{{ Disable certain default keybinds
|
||||||
{
|
unmap("f", "CTRL|SHIFT"),
|
||||||
key = "f",
|
unmap("w", "CTRL|SHIFT"),
|
||||||
mods = "CTRL|SHIFT",
|
unmap("Enter", "ALT"),
|
||||||
action = wezterm.action.DisableDefaultAssignment,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key = "w",
|
|
||||||
mods = "CTRL|SHIFT",
|
|
||||||
action = wezterm.action.DisableDefaultAssignment,
|
|
||||||
},
|
|
||||||
-- }}}
|
-- }}}
|
||||||
}
|
}
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
|
@ -1,25 +1,35 @@
|
||||||
let
|
let
|
||||||
chord = from: to: { inherit from to; };
|
chord = from: to: { inherit from to; };
|
||||||
unmap = from: chord from [ ];
|
unmap = from: chord from [ ];
|
||||||
|
# I want my brackets to be aligned
|
||||||
|
sem = "semicolon";
|
||||||
commonChords = [
|
commonChords = [
|
||||||
# {{{ Modifiers
|
# {{{ Modifiers
|
||||||
(chord [ "s" "d" ] [ "leftshift" ])
|
# {{{ right
|
||||||
(chord [ "s" "f" ] [ "leftctrl" ])
|
|
||||||
(chord [ "s" "a" ] [ "leftalt" ])
|
|
||||||
(chord [ "l" "k" ] [ "rightshift" ])
|
|
||||||
(chord [ "l" "j" ] [ "rightctrl" ])
|
|
||||||
(chord [ "l" "semicolon" ] [ "rightalt" ])
|
|
||||||
(chord [ "l" "n" ] [ "rightmeta" ])
|
(chord [ "l" "n" ] [ "rightmeta" ])
|
||||||
|
(chord [ "k" "l" ] [ "rightshift" ])
|
||||||
|
(chord [ "j" "l" ] [ "rightctrl" ])
|
||||||
|
(chord [ "l" sem ] [ "rightalt" ])
|
||||||
(chord [ "j" "k" "l" ] [ "rightctrl" "rightshift" ])
|
(chord [ "j" "k" "l" ] [ "rightctrl" "rightshift" ])
|
||||||
(chord [ "s" "d" "f" ] [ "leftctrl" "leftshift" ])
|
(chord [ "k" "l" sem ] [ "rightalt" "rightshift" ])
|
||||||
(unmap [ "leftalt" ])
|
(chord [ "j" "k" "l" sem ] [ "rightalt" "rightctrl" "rightshift" ])
|
||||||
# (unmap [ "leftshift" ]) # Useful for touhou
|
|
||||||
(unmap [ "leftctrl" ])
|
|
||||||
(unmap [ "rightshift" ])
|
(unmap [ "rightshift" ])
|
||||||
(unmap [ "rightctrl" ])
|
(unmap [ "rightctrl" ])
|
||||||
(unmap [ "rightalt" ])
|
(unmap [ "rightalt" ])
|
||||||
(unmap [ "rightmeta" ])
|
(unmap [ "rightmeta" ])
|
||||||
# }}}
|
# }}}
|
||||||
|
# {{{ left
|
||||||
|
(chord [ "s" "d" ] [ "leftshift" ])
|
||||||
|
(chord [ "s" "f" ] [ "leftctrl" ])
|
||||||
|
(chord [ "s" "a" ] [ "leftalt" ])
|
||||||
|
(chord [ "s" "d" "f" ] [ "leftctrl" "leftshift" ])
|
||||||
|
(chord [ "a" "s" "d" ] [ "leftalt" "leftshift" ])
|
||||||
|
(chord [ "a" "s" "d" "f" ] [ "leftalt" "leftctrl" "leftshift" ])
|
||||||
|
(unmap [ "leftalt" ])
|
||||||
|
(unmap [ "leftctrl" ])
|
||||||
|
# (unmap [ "leftshift" ]) # Useful for touhou
|
||||||
|
# }}}
|
||||||
|
# }}}
|
||||||
# {{{ Other special keys
|
# {{{ Other special keys
|
||||||
(chord [ "g" "h" ] [ "backspace" ])
|
(chord [ "g" "h" ] [ "backspace" ])
|
||||||
(chord [ "n" "v" ] [ "backslash" ])
|
(chord [ "n" "v" ] [ "backslash" ])
|
||||||
|
|
Loading…
Reference in a new issue