]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/mitosis/keymaps/datagrok/config.h
mitosis: minor readme improvements (#3762)
[qmk_firmware.git] / keyboards / mitosis / keymaps / datagrok / config.h
1 #ifndef CONFIG_USER_H
2 #define CONFIG_USER_H
3
4 #include "../../config.h"
5
6 // I want to place an underscore as tap behavior on the right shift key. But
7 // RSFT_T(KC_UNDS) doesn't work; mod-tap doesn't work with pre-shifted keys. So
8 // instead we take advantage of Space Cadet Shift that does something similar
9 // and just tweak it to use the -_ key instead of 0) See
10 // https://github.com/qmk/qmk_firmware/pull/2055
11 #define RSPC_KEY KC_MINS
12
13 // TODO: figure out which of these I can safely enable to reduce firmware size.
14 //#define NO_ACTION_LAYER
15 //#define NO_ACTION_TAPPING
16 //#define NO_ACTION_ONESHOT // can't; errors
17 //#define NO_ACTION_MACRO
18 //#define NO_ACTION_FUNCTION
19
20 #ifdef AUDIO_ENABLE
21 #define STARTUP_SONG SONG(PLANCK_SOUND)
22 // #define STARTUP_SONG SONG(NO_SOUND)
23 #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND),   \
24                               SONG(COLEMAK_SOUND),  \
25                               SONG(DVORAK_SOUND)    \
26   }
27 #define AUDIO_VOICES
28 #define AUDIO_CLICKY
29 #define C6_AUDIO
30 #endif
31
32 #endif