keymap_neo2.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /* Copyright 2016 Matthias Schmitt
  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. * │ ^ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ ` │       │
  22. * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤
  23. * │     │ X │ V │ L │ C │ W │ K │ H │ G │ F │ Q │ ß │ ´ │     │
  24. * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │
  25. * │  L3  │ U │ I │ A │ E │ O │ S │ N │ R │ T │ D │ Y │ L3│    │
  26. * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤
  27. * │    │L4 │ Ü │ Ö │ Ä │ P │ Z │ B │ M │ , │ . │ J │          │
  28. * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤
  29. * │    │    │    │                        │    │ L4 │    │    │
  30. * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘
  31. */
  32. // Row 1
  33. #define NE_CIRC KC_GRV // ^ (dead)
  34. #define NE_1 KC_1 // 1
  35. #define NE_2 KC_2 // 2
  36. #define NE_3 KC_3 // 3
  37. #define NE_4 KC_4 // 4
  38. #define NE_5 KC_5 // 5
  39. #define NE_6 KC_6 // 6
  40. #define NE_7 KC_7 // 7
  41. #define NE_8 KC_8 // 8
  42. #define NE_9 KC_9 // 9
  43. #define NE_0 KC_0 // 0
  44. #define NE_MINS KC_MINS // -
  45. #define NE_GRV KC_EQL // ` (dead)
  46. // Row 2
  47. #define NE_X KC_Q // X
  48. #define NE_V KC_W // V
  49. #define NE_L KC_E // L
  50. #define NE_C KC_R // C
  51. #define NE_W KC_T // W
  52. #define NE_K KC_Y // K
  53. #define NE_H KC_U // H
  54. #define NE_H KC_I // G
  55. #define NE_F KC_O // F
  56. #define NE_Q KC_P // Q
  57. #define NE_SS KC_LBRC // ß
  58. #define NE_ACUT KC_RBRC // ´ (dead)
  59. // Row 3
  60. #define NE_L3L KC_CAPS // (layer 3)
  61. #define NE_U KC_A // U
  62. #define NE_I KC_S // I
  63. #define NE_A KC_D // A
  64. #define NE_E KC_F // E
  65. #define NE_O KC_G // O
  66. #define NE_S KC_H // S
  67. #define NE_N KC_J // N
  68. #define NE_R KC_K // R
  69. #define NE_T KC_L // T
  70. #define NE_D KC_SCLN // D
  71. #define NE_Y KC_QUOT // Y
  72. #define NE_L3R KC_NUHS // (layer 3)
  73. // Row 4
  74. #define NE_L4L KC_NUBS // (layer 4)
  75. #define NE_UDIA KC_Z // Ü
  76. #define NE_ODIA KC_X // Ö
  77. #define NE_ADIA KC_C // Ä
  78. #define NE_P KC_V // P
  79. #define NE_Z KC_B // Z
  80. #define NE_B KC_N // B
  81. #define NE_M KC_M // M
  82. #define NE_COMM KC_COMM // ,
  83. #define NE_DOT KC_DOT // .
  84. #define NE_J KC_SLSH // J
  85. // Row 5
  86. #define NE_L4R KC_ALGR // (layer 4)
  87. // DEPRECATED
  88. #define NEO_A NE_A
  89. #define NEO_B NE_B
  90. #define NEO_C NE_C
  91. #define NEO_D NE_D
  92. #define NEO_E NE_E
  93. #define NEO_F NE_F
  94. #define NEO_G NE_G
  95. #define NEO_H NE_H
  96. #define NEO_I NE_I
  97. #define NEO_J NE_J
  98. #define NEO_K NE_K
  99. #define NEO_L NE_L
  100. #define NEO_M NE_M
  101. #define NEO_N NE_N
  102. #define NEO_O NE_O
  103. #define NEO_P NE_P
  104. #define NEO_Q NE_Q
  105. #define NEO_R NE_R
  106. #define NEO_S NE_S
  107. #define NEO_T NE_T
  108. #define NEO_U NE_U
  109. #define NEO_V NE_V
  110. #define NEO_W NE_W
  111. #define NEO_X NE_X
  112. #define NEO_Y NE_Y
  113. #define NEO_Z NE_Z
  114. #define NEO_AE NE_ADIA
  115. #define NEO_OE NE_ODIA
  116. #define NEO_UE NE_UDIA
  117. #define NEO_SS NE_SS
  118. #define NEO_DOT NE_DOT
  119. #define NEO_COMM NE_COMM
  120. #define NEO_1 NE_1
  121. #define NEO_2 NE_2
  122. #define NEO_3 NE_3
  123. #define NEO_4 NE_4
  124. #define NEO_5 NE_5
  125. #define NEO_6 NE_6
  126. #define NEO_7 NE_7
  127. #define NEO_8 NE_8
  128. #define NEO_9 NE_9
  129. #define NEO_0 NE_0
  130. #define NEO_MINS NE_MINS
  131. #define NEO_ACUT NE_ACUT
  132. #define NEO_GRV NE_GRV
  133. #define NEO_CIRC NE_CIRC
  134. #define NEO_L1_L NE_L3L
  135. #define NEO_L1_R NE_L3R
  136. #define NEO_L2_L NE_L4L
  137. #define NEO_L2_R NE_L4R