Rearranged numpad and removed layer taps

- currently I am getting out of rhythm typing /. Would get 01 instead
- Moved 0 next to 4 on the numpad. This may take some time gettng used to
- Removed the tapping term per key since I was no longer doing customizations
This commit is contained in:
Victor 2024-05-12 13:14:19 -05:00
parent 31d8098de2
commit e43d0eabc9
Failed to generate hash of commit
5 changed files with 4 additions and 25 deletions

View file

@ -1,15 +0,0 @@
#include "tapping.h"
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case NAV_0:
return TAPPING_TERM + 60;
default:
return TAPPING_TERM;
}
}