aboutsummaryrefslogtreecommitdiff
path: root/users/ishtob/config.h
diff options
context:
space:
mode:
authorishtob <ishtob@gmail.com>2018-08-10 11:30:21 -0400
committerDrashna Jaelre <drashna@live.com>2018-08-10 08:30:21 -0700
commitfd0bd29a0a3f2de93a3e561007805fac67e7e0cd (patch)
treed7c9a379d6b04fb851854102631cdde5c3f9b607 /users/ishtob/config.h
parentfeb5e4aaebb78842c090230f68ea9de80a5c17e6 (diff)
downloadqmk_firmware-fd0bd29a0a3f2de93a3e561007805fac67e7e0cd.tar.gz
qmk_firmware-fd0bd29a0a3f2de93a3e561007805fac67e7e0cd.zip
Keymap: adding my personal userspace to QMK master (#3605)
* Adding my personal planck keymap * Adding readme.md to my keymap * Create my userspace add users/ishtob/ * Moved macros off keymap macros now exsists in my userspace, moved them off keyboard specific keymaps * Create my userspace add users/ishtob/ * rebase from main QMK repo
Diffstat (limited to 'users/ishtob/config.h')
-rwxr-xr-xusers/ishtob/config.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/users/ishtob/config.h b/users/ishtob/config.h
new file mode 100755
index 000000000..9c4a7ed8d
--- /dev/null
+++ b/users/ishtob/config.h
@@ -0,0 +1,76 @@
1#ifndef CONFIG_USER_H
2#define CONFIG_USER_H
3
4#include "config_common.h"
5
6#ifdef AUDIO_ENABLE
7 #define STARTUP_SONG SONG(PLANCK_SOUND)
8 // #define STARTUP_SONG SONG(NO_SOUND)
9
10 #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
11 SONG(COLEMAK_SOUND), \
12 SONG(DVORAK_SOUND) \
13 }
14#endif
15
16//#define LEADER_TIMEOUT 300
17//#define BACKLIGHT_BREATHING
18#define PREVENT_STUCK_MODIFIERS
19//#define PERMISSIVE_HOLD
20// #define QMK_KEYS_PER_SCAN 4
21
22//audio clicky
23 //#define AUDIO_CLICKY
24 // to enable clicky on startup
25 //#define AUDIO_CLICKY_ON
26 //#define AUDIO_CLICKY_FREQ_RANDOMNESS 1.0f
27
28/* ws2812 RGB LED
29#define RGB_DI_PIN B5
30#define RGBLIGHT_ANIMATIONS
31#define RGBLED_NUM 8 // Number of LEDs
32#define RGBLIGHT_HUE_STEP 10
33#define RGBLIGHT_SAT_STEP 17
34*/
35#undef PLANCK_MIT_LAYOUT
36
37//#define MUON_LEFT
38
39#undef DEBOUNCE
40#define DEBOUNCE 0
41
42//rgb-reactive
43//#define RGB_MATRIX_KEYPRESSES
44//#define EECONFIG_RGB_MATRIX (uint32_t *)16
45
46//skip usb startup check
47//#define NO_USB_STARTUP_CHECK
48
49
50/*
51 * MIDI options
52 */
53
54/* Prevent use of disabled MIDI features in the keymap */
55//#define MIDI_ENABLE_STRICT 1
56
57/* enable basic MIDI features:
58 - MIDI notes can be sent when in Music mode is on
59*/
60#define MIDI_BASIC
61
62/* enable advanced MIDI features:
63 - MIDI notes can be added to the keymap
64 - Octave shift and transpose
65 - Virtual sustain, portamento, and modulation wheel
66 - etc.
67*/
68//#define MIDI_ADVANCED
69
70/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
71//#define MIDI_TONE_KEYCODE_OCTAVES 2
72
73// Most tactile encoders have detents every 4 stages
74#define ENCODER_RESOLUTION 4
75
76#endif