You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
2.0 KiB

  1. /* Copyright 2019-2021 Konstantin Đorđević <vomindoraan@gmail.com>
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. // Keyboard reports
  18. #define FORCE_NKRO
  19. #define USB_POLLING_INTERVAL_MS 1
  20. // Mouse keys
  21. #define MOUSEKEY_DELAY 0
  22. #define MOUSEKEY_INTERVAL 10
  23. #define MOUSEKEY_MAX_SPEED 4
  24. #define MOUSEKEY_TIME_TO_MAX 100
  25. #define MOUSEKEY_WHEEL_DELAY 0
  26. #define MOUSEKEY_WHEEL_INTERVAL 50
  27. #define MOUSEKEY_WHEEL_MAX_SPEED 4
  28. #define MOUSEKEY_WHEEL_TIME_TO_MAX 50
  29. // RGB lighting
  30. #undef RGBLIGHT_EFFECT_BREATHING
  31. #undef RGBLIGHT_EFFECT_RAINBOW_MOOD
  32. #undef RGBLIGHT_EFFECT_RAINBOW_SWIRL
  33. #undef RGBLIGHT_EFFECT_SNAKE
  34. #undef RGBLIGHT_EFFECT_KNIGHT
  35. #undef RGBLIGHT_EFFECT_CHRISTMAS
  36. #undef RGBLIGHT_EFFECT_STATIC_GRADIENT
  37. #undef RGBLIGHT_EFFECT_RGB_TEST
  38. #undef RGBLIGHT_EFFECT_ALTERNATING
  39. #undef RGBLIGHT_EFFECT_TWINKLE
  40. #define RGBLIGHT_EFFECT_BREATHING
  41. #define RGBLIGHT_EFFECT_RAINBOW_MOOD
  42. #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
  43. #define RGBLIGHT_EFFECT_SNAKE
  44. // Tapping
  45. #define PERMISSIVE_HOLD
  46. #define TAPPING_TERM 200
  47. #define TAPPING_TOGGLE 2
  48. // Unicode
  49. #define UNICODE_CYCLE_PERSIST false
  50. #define UNICODE_SELECTED_MODES UNICODE_MODE_WINCOMPOSE, UNICODE_MODE_WINDOWS, UNICODE_MODE_LINUX
  51. #define UNICODE_KEY_WINC KC_RGUI
  52. // Firmware size reduction
  53. #undef LOCKING_SUPPORT_ENABLE
  54. #define NO_ACTION_FUNCTION
  55. #define NO_ACTION_MACRO
  56. #define NO_ACTION_ONESHOT