logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

keymap.c (6289B)


  1. /**
  2. * Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include QMK_KEYBOARD_H
  18. enum charybdis_keymap_layers {
  19. LAYER_BASE = 0,
  20. LAYER_LOWER,
  21. LAYER_RAISE,
  22. };
  23. #define LOWER MO(LAYER_LOWER)
  24. #define RAISE MO(LAYER_RAISE)
  25. #define CTL_BSP CTL_T(KC_BSPC)
  26. #define SFT_SPC SFT_T(KC_SPC)
  27. #define GUI_ENT GUI_T(KC_ENT)
  28. // clang-format off
  29. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  30. [LAYER_BASE] = LAYOUT(
  31. // ╭─────────────────────────────────────────────╮ ╭─────────────────────────────────────────────╮
  32. KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
  33. // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
  34. KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,
  35. // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
  36. KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
  37. // ╰─────────────────────────────────────────────┤ ├─────────────────────────────────────────────╯
  38. CTL_BSP, SFT_SPC, LOWER, RAISE, GUI_ENT
  39. // ╰───────────────────────────╯ ╰──────────────────╯
  40. ),
  41. [LAYER_LOWER] = LAYOUT(
  42. // ╭─────────────────────────────────────────────╮ ╭─────────────────────────────────────────────╮
  43. RM_TOGG, KC_MNXT, KC_MPLY, KC_MPRV, XXXXXXX, KC_LBRC, KC_7, KC_8, KC_9, KC_RBRC,
  44. // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
  45. KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, XXXXXXX, KC_PPLS, KC_4, KC_5, KC_6, KC_PMNS,
  46. // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
  47. XXXXXXX, XXXXXXX, XXXXXXX, EE_CLR, QK_BOOT, KC_PAST, KC_1, KC_2, KC_3, KC_PSLS,
  48. // ╰─────────────────────────────────────────────┤ ├─────────────────────────────────────────────╯
  49. XXXXXXX, XXXXXXX, _______, XXXXXXX, _______
  50. // ╰───────────────────────────╯ ╰──────────────────╯
  51. ),
  52. [LAYER_RAISE] = LAYOUT(
  53. // ╭─────────────────────────────────────────────╮ ╭─────────────────────────────────────────────╮
  54. XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_VOLU, KC_MUTE, KC_VOLD, XXXXXXX,
  55. // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
  56. KC_LEFT, KC_UP, KC_DOWN, KC_RGHT, XXXXXXX, XXXXXXX, KC_RSFT, KC_RCTL, KC_RALT, KC_RGUI,
  57. // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
  58. KC_HOME, KC_PGUP, KC_PGDN, KC_END, XXXXXXX, QK_BOOT, EE_CLR, XXXXXXX, XXXXXXX, XXXXXXX,
  59. // ╰─────────────────────────────────────────────┤ ├─────────────────────────────────────────────╯
  60. _______, _______, XXXXXXX, _______, XXXXXXX
  61. // ╰───────────────────────────╯ ╰──────────────────╯
  62. ),
  63. };
  64. // clang-format on