hvp.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Copyright 2021 hvp
  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. #include "quantum.h"
  18. #undef TAPPING_TERM
  19. #define TAPPING_TERM 150
  20. #ifdef TAP_DANCE_ENABLE
  21. # include "tap_dances.h"
  22. #endif
  23. #ifdef TAPPING_TERM_PER_KEY
  24. # include "per_key.h"
  25. #endif
  26. #define D_NAVI MT(MOD_LCTL | MOD_LSFT, KC_D)
  27. /* Home-row mods */
  28. #define LG_A MT(MOD_LGUI, KC_A)
  29. #define LA_S MT(MOD_LALT, KC_S)
  30. #define LS_D MT(MOD_LSFT, KC_D)
  31. #define LC_F MT(MOD_LCTL, KC_F)
  32. #define RC_H MT(MOD_RCTL, KC_H)
  33. #define RS_J MT(MOD_RSFT, KC_J)
  34. #define RA_K MT(MOD_RALT, KC_K)
  35. #define RG_L MT(MOD_RGUI, KC_L)