config.h 922 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "../../config.h"
  4. // #define MUSIC_MASK (keycode != KC_NO)
  5. /*
  6. * MIDI options
  7. */
  8. /* enable basic MIDI features:
  9. - MIDI notes can be sent when in Music mode is on
  10. */
  11. // #define MIDI_BASIC
  12. /* enable advanced MIDI features:
  13. - MIDI notes can be added to the keymap
  14. - Octave shift and transpose
  15. - Virtual sustain, portamento, and modulation wheel
  16. - etc.
  17. */
  18. //#define MIDI_ADVANCED
  19. /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
  20. //#define MIDI_TONE_KEYCODE_OCTAVES 2
  21. // help for fast typist+dual function keys?
  22. #define PERMISSIVE_HOLD
  23. /* speed up mousekeys a bit */
  24. #define MOUSEKEY_DELAY 50
  25. #define MOUSEKEY_INTERVAL 20
  26. #define MOUSEKEY_MAX_SPEED 8
  27. #define MOUSEKEY_TIME_TO_MAX 30
  28. #define MOUSEKEY_WHEEL_MAX_SPEED 8
  29. #define MOUSEKEY_WHEEL_TIME_TO_MAX 40
  30. #endif