blob: 4ba4a57165a06a40e76d54c57ddd3f3385c8c5d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#pragma once
// help for fast typist+dual function keys?
#define PERMISSIVE_HOLD
// Let me type `ls -l` more quickly.
#define TAPPING_FORCE_HOLD
// where is the cord plugged in?
#define MASTER_RIGHT
/* speed up mousekeys a bit */
#define MOUSEKEY_DELAY 50
#define MOUSEKEY_INTERVAL 20
#define MOUSEKEY_MAX_SPEED 8
#define MOUSEKEY_TIME_TO_MAX 30
#define MOUSEKEY_WHEEL_MAX_SPEED 8
#define MOUSEKEY_WHEEL_TIME_TO_MAX 40
// because I'm lazy and didn't case out the rgb support
#define RGBLED_NUM 2
#define BACKLIGHT_PIN B7
#define BACKLIGHT_LEVELS 3
|