From 6bbc2541e0156c0edade451aa3a01c93cf91cafa Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Sun, 6 Apr 2025 12:27:22 +0800 Subject: [PATCH] chore: disable home row mods for now --- modules/programs/kanata.nix | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/modules/programs/kanata.nix b/modules/programs/kanata.nix index 366da61..1af56f8 100644 --- a/modules/programs/kanata.nix +++ b/modules/programs/kanata.nix @@ -20,41 +20,6 @@ ;; tap-hold-release will activate the hold action early ;; if another key is pressed while it is held. CapsLock (tap-hold-release 200 200 Escape ControlLeft) - - ;; space if pressed twice in quick succession will - ;; enter a space then delete it and put enter - Space (tap-hold-release 200 200 - (tap-dance-eager 200 ( - (macro Space) ;; use macro to prevent auto repeat - (macro Backspace Enter) - )) - (layer-while-held num) - ) - - ;; Home Row Mods - KeyA (tap-hold-release $tt $hrht KeyA ControlLeft) - KeyS (tap-hold-release $tt $hrht KeyS ShiftLeft) - KeyD (tap-hold-release $tt $hrht KeyD AltLeft) - KeyF (tap-hold-release $tt $hrht KeyF MetaLeft) - - Semicolon (tap-hold-release $tt $hrht Semicolon ControlRight) - KeyL (tap-hold-release $tt $hrht KeyL ShiftRight) - KeyK (tap-hold-release $tt $hrht KeyK AltRight) - KeyJ (tap-hold-release $tt $hrht KeyJ MetaRight) - ;; Pressing JKLA + Space will result in s being s - ) - - (deflayermap (num) - KeyA Digit1 - KeyS Digit2 - KeyD Digit3 - KeyF Digit4 - KeyG Digit5 - KeyH Digit6 - KeyJ Digit7 - KeyK Digit8 - KeyL Digit9 - Semicolon Digit0 ) ''; };