diff options
author | Manna Harbour <51143715+manna-harbour@users.noreply.github.com> | 2020-06-23 15:30:05 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 22:30:05 -0700 |
commit | f0bde7906d35c1955a39251659e80d41caccbc54 (patch) | |
tree | d7b00bdd3bae2c295c78c1837ddbf90c31d04735 /users/manna-harbour_miryoku/config.h | |
parent | 24b0cda3e877c28c53c1aca02ef6e0eaa66fad91 (diff) | |
download | qmk_firmware-f0bde7906d35c1955a39251659e80d41caccbc54.tar.gz |
Update miryoku (#9442)
- Add mouse buttons overlay layer
- Change button order
- Remove crkbd hardware specifics
- Add alternative base layer alphas
- Change title
- Add logo
- Reword intro text
- Add dev branch and new commits links
- Replace manual toc and remove anchors
- Unindent lists
- Reduce headings
- Update docs
- Build keymap as object instead of including .c file
- Add kle subset mapping images
- Add alternative mapping support
- Change default mapping for ortho_4x12
- Add split mapping for ortho_4x12
- Add contact section
- Add #pragma once to layout and keyboard config.h
Diffstat (limited to 'users/manna-harbour_miryoku/config.h')
-rw-r--r-- | users/manna-harbour_miryoku/config.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/users/manna-harbour_miryoku/config.h b/users/manna-harbour_miryoku/config.h index 5ac3208c9..db1608815 100644 --- a/users/manna-harbour_miryoku/config.h +++ b/users/manna-harbour_miryoku/config.h @@ -2,6 +2,9 @@ #pragma once +// default but important +#define TAPPING_TERM 200 + // Prevent normal rollover on alphas from accidentally triggering mods. #define IGNORE_MOD_TAP_INTERRUPT @@ -10,3 +13,15 @@ // Recommended for heavy chording. #define QMK_KEYS_PER_SCAN 4 + +// Mouse key speed and acceleration. +#undef MOUSEKEY_DELAY +#define MOUSEKEY_DELAY 0 +#undef MOUSEKEY_INTERVAL +#define MOUSEKEY_INTERVAL 16 +#undef MOUSEKEY_WHEEL_DELAY +#define MOUSEKEY_WHEEL_DELAY 0 +#undef MOUSEKEY_MAX_SPEED +#define MOUSEKEY_MAX_SPEED 6 +#undef MOUSEKEY_TIME_TO_MAX +#define MOUSEKEY_TIME_TO_MAX 64 |