config.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* Copyright 2020 Jordan Egstad
  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. #define TAPPING_TERM 200
  18. #define IGNORE_MOD_TAP_INTERRUPT
  19. #define RGBLIGHT_SLEEP
  20. /* Leader Key
  21. ========================================================================== */
  22. // Activates the leader key
  23. // #define LEADER_PER_KEY_TIMING
  24. // resets the timeout after each key is tapped
  25. // #define LEADER_TIMEOUT 240
  26. /* Autoshifting
  27. ========================================================================== */
  28. // This controls how long you have to hold a key before you get the shifted state.
  29. #define AUTO_SHIFT_TIMEOUT 150
  30. // Do not Auto Shift special keys -_, =+, [{, ]}, ;:, '", ,<, .>, and /?
  31. // #define NO_AUTO_SHIFT_SPECIAL
  32. // Do not Auto Shift numeric keys, zero through nine.
  33. #define NO_AUTO_SHIFT_NUMERIC
  34. // Do not Auto Shift alpha characters, which include A through Z.
  35. // #define NO_AUTO_SHIFT_ALPHA
  36. // Lower the Auto Shift timeout variable (down)
  37. // AS_DOWN
  38. // Raise the Auto Shift timeout variable (up)
  39. // AS_UP
  40. // Report your current Auto Shift timeout value
  41. // AS_RPT
  42. // Turns on the Auto Shift Function
  43. // AS_ON
  44. // Turns off the Auto Shift Function
  45. // AS_OFF
  46. // Toggles the state of the Auto Shift feature
  47. // AS_TOGG