keymap_plover.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* Copyright 2016 James Kay
  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 "keymap.h"
  18. // clang-format off
  19. /*
  20. * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐
  21. * │ │Num│ │ │ │ │ │ │ │ │ │ │ │ │
  22. * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
  23. * │ │ S │ T │ P │ H │ │ * │ F │ P │ L │ T │ D │ │ │
  24. * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤
  25. * │ │ │ K │ W │ R │ │ │ R │ B │ G │ S │ Z │ │
  26. * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤
  27. * │ │ │ │ A │ O │ │ E │ U │ │ │ │ │
  28. * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
  29. * │ │ │ │ │ │ │ │ │
  30. * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
  31. */
  32. // Row 1
  33. #define PV_NUM KC_1
  34. // Row 2
  35. #define PV_LS KC_Q
  36. #define PV_LT KC_W
  37. #define PV_LP KC_E
  38. #define PV_LH KC_R
  39. #define PV_STAR KC_Y
  40. #define PV_RF KC_U
  41. #define PV_RP KC_I
  42. #define PV_RL KC_O
  43. #define PV_RT KC_P
  44. #define PV_RD KC_LBRC
  45. // Row 3
  46. #define PV_LK KC_S
  47. #define PV_LW KC_D
  48. #define PV_LR KC_F
  49. #define PV_RR KC_J
  50. #define PV_RB KC_K
  51. #define PV_RG KC_L
  52. #define PV_RS KC_SCLN
  53. #define PV_RZ KC_QUOT
  54. // Row 4
  55. #define PV_A KC_C
  56. #define PV_O KC_V
  57. #define PV_E KC_N
  58. #define PV_U KC_M