diff options
author | Soispha <soispha@vhack.eu> | 2024-02-28 21:59:00 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-02-28 21:59:00 +0100 |
commit | 055fbaa97884ae68a5c6cf21b630b270b011515c (patch) | |
tree | abbfe3adc5f3ab41a61d65ff7d8cd52f084962b9 | |
parent | chore(version): v1.36.0 (diff) | |
download | nixos-config-055fbaa97884ae68a5c6cf21b630b270b011515c.tar.gz nixos-config-055fbaa97884ae68a5c6cf21b630b270b011515c.zip |
fix(hm/conf/lf/keymappings): Unmap the later bound keys
-rw-r--r-- | hm/soispha/conf/lf/keybindings/default.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/hm/soispha/conf/lf/keybindings/default.nix b/hm/soispha/conf/lf/keybindings/default.nix index b884551d..ceec16e0 100644 --- a/hm/soispha/conf/lf/keybindings/default.nix +++ b/hm/soispha/conf/lf/keybindings/default.nix @@ -3,14 +3,15 @@ in { # Remove some defaults - m = null; - "\"'\"" = null; "'\"'" = null; - d = null; + ";" = null; + "\"'\"" = null; c = null; + d = null; e = null; j = null; - ";" = null; + k = null; + m = null; # Sorting kn = ":set sortby natural; set info"; |