keymap.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /* Copyright 2021 Pierre-Emmanuel Ott
  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. #include QMK_KEYBOARD_H
  17. /* This keymap is based on a) intuitive layout and b) least amount of layers required for the bare minimum amount of keys.
  18. * The first layer has most symbols and the usual QWERTY layout, along with all mods. This is similar to what one may make on a Preonic.
  19. * Second layer is my left-hand layer: if the right hand is on the mouse, this layer has arrows and other keys on the left-hand. This also has a numpad.
  20. * Last layer is for Functions keys and keyboard functions.
  21. *
  22. * Note that 'Reset' appears twice: on Nyquist both halves need to be flashed, so we need the full Reset shortcut to be available from any given single half.
  23. */
  24. enum custom_layers {
  25. _QWERTY,
  26. _LEFTHAND,
  27. _FUNC
  28. };
  29. #define SPC_LFT LT(_LEFTHAND, KC_SPC)
  30. #define BSP_FUNC LT(_FUNC, KC_BSPC)
  31. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  32. /* Base/Qwerty layer
  33. * .-----------------------------------------. .-----------------------------------------.
  34. * | ~ | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - |
  35. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  36. * | Tab | Q | W | E | R | T | | Y | U | I | O | P | [ |
  37. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  38. * | Esc | A | S | D | F | G | | H | J | K | L | ; | " |
  39. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  40. * | Lsft(| Z | X | C | V | B | | N | M | , | . | / | Rsft)|
  41. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  42. * | LCtrl| LGui | LAlt | Del | Spc/LftHnd | | Bckpc/Func | Left | Down | Up | Right|
  43. * '-----------------------------------------' '-----------------------------------------'
  44. */
  45. [_QWERTY] = LAYOUT(
  46. KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
  47. KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,
  48. LCTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
  49. KC_LSPO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSPC,
  50. LCTL_T(KC_MPRV), LGUI_T(KC_MPLY), LALT_T(KC_MNXT), KC_DEL, SPC_LFT, SPC_LFT, BSP_FUNC, BSP_FUNC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
  51. ),
  52. /* Left hand layer
  53. * .-----------------------------------------. .-----------------------------------------.
  54. * | + | | | | | Rst | | NumLk| / | * | - | | \ |
  55. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  56. * | | Home | [ | Up | ] | PgUp | | 7 | 8 | 9 | + | | ] |
  57. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  58. * | | End | Left | Down | Right| PgDn | | 4 | 5 | 6 | , | | |
  59. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  60. * | | Calc | MyPC |PrtScr| Enter|BckSpc| | 1 | 2 | 3 | = | | Enter|
  61. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  62. * | | Mute | | | | | | 0 | . | Enter| Home | End |
  63. * '-----------------------------------------' '-----------------------------------------'
  64. */
  65. [_LEFTHAND] = LAYOUT(
  66. KC_EQL, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, KC_TRNS, KC_BSLS,
  67. KC_TRNS, KC_TRNS, KC_LBRC, KC_UP, KC_RBRC, KC_TRNS, KC_P7, KC_P8, KC_P9, KC_PPLS, KC_TRNS, KC_RBRC,
  68. KC_LCTL, KC_TRNS, KC_LEFT, KC_DOWN, KC_RGHT, KC_TRNS, KC_P4, KC_P5, KC_P6, KC_PCMM, KC_TRNS, KC_TRNS,
  69. KC_LSFT, KC_CALC, KC_MYCM, KC_PSCR, KC_ENT, KC_BSPC, KC_P1, KC_P2, KC_P3, KC_PEQL, KC_TRNS, KC_ENT,
  70. KC_LCTL, KC_MUTE, KC_LALT, KC_TRNS, KC_TRNS, KC_TRNS, KC_P0, KC_P0, KC_PDOT, KC_PENT, KC_HOME, KC_END
  71. ),
  72. /* Func/Numpad layer
  73. * .-----------------------------------------. .-----------------------------------------.
  74. * | F1 | F2 | F3 | F4 | F5 | F6 | | F7 | F8 | F9 | F10 | F11 | F12 |
  75. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  76. * | RGBtg| | | | | | | | | | | | |
  77. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  78. * | | | | | | | | | | | | | |
  79. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  80. * | | | | | | | | | | | | | |
  81. * |------+------+------+------+------+------| |------+------+------+------+------+------|
  82. * | | | | | | | | | | | | | Rst |
  83. * '-----------------------------------------' '-----------------------------------------'
  84. */
  85. [_FUNC] = LAYOUT(
  86. KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
  87. RGB_TOG, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
  88. KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
  89. KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
  90. KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET
  91. ),
  92. };