re-order HRMs to GCSA

Given that we have a dedicated `Shift` key, there's really no need to
dedicate the best hrm-slot to it. I was debating whether to give it to
`Alt` or `Ctrl`. I ended up going with `Alt` as I use it quite
frequently for managing my workspaces.
This commit is contained in:
urob 2024-04-16 09:52:51 -04:00
parent 05254fb7af
commit 43f402d3d8
2 changed files with 11 additions and 11 deletions

View file

@ -15,10 +15,10 @@
#define COMBO_TERM_SLOW 30
// make homerow combos tap-only (so HRMs can be chorded instantaneously)
#define HRC_TAB &hml LA(LCTRL) TAB
#define HRC_REPEAT &hml_repeat LS(LCTRL) 0
#define HRC_LPAR &hmr_lpar_lt RS(LCTRL) 0
#define HRC_RPAR &hmr_rpar_gt LA(LCTRL) 0
#define HRC_TAB &hml LS(LCTRL) TAB
#define HRC_REPEAT &hml_repeat LS(LALT) 0
#define HRC_LPAR &hmr_lpar_lt RS(LALT) 0
#define HRC_RPAR &hmr_rpar_gt RS(LCTRL) 0
/* Horizontal combos - left hand */
ZMK_COMBO(esc, &kp ESC, LT3 LT2, DEF NAV NUM, COMBO_TERM_FAST)