logo

qmk_firmware

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

keymap.c (4289B)


  1. /* Copyright 2017 REPLACE_WITH_YOUR_NAME
  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. #define OOOOOOO KC_TRNS
  18. #define C_LCTL MT(MOD_LCTL, KC_QUOT)
  19. #define C_RCTL MT(MOD_RCTL, KC_GRV)
  20. #define C_LGUI MT(MOD_LGUI, KC_LBRC)
  21. #define C_RGUI MT(MOD_RGUI, KC_RBRC)
  22. #define C_ESC MT(MOD_LCTL, KC_ESC)
  23. #define C_ENT MT(MOD_RCTL, KC_ENT)
  24. /*
  25. * ,-----------------------------------------------------------------------------------.
  26. * | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp |
  27. * |------+------+------+------+------+------+------+------+------+------+------+------|
  28. * | Esc | A | S | D | F | G | H | J | K | L | ; | " |
  29. * |------+------+------+------+------+------+------+------+------+------+------+------|
  30. * | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
  31. * |------+------+------+------+------+------+------+------+------+------+------+------|
  32. * | Brite| Ctrl | Alt | GUI |Lower | SPC |Raise | Left | Down | Up |Right |
  33. * `-----------------------------------------------------------------------------------'
  34. */
  35. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  36. [0] = LAYOUT_planck_mit(
  37. KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
  38. C_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, C_ENT,
  39. SC_LSPO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, SC_RSPC,
  40. C_LCTL, C_LGUI, MOD_LALT, MO(3), MO(1), KC_SPC, MO(2), MO(4), MOD_RALT, C_RGUI, C_RCTL),
  41. [1] = LAYOUT_planck_mit(
  42. _______, KC_F9, KC_F10, KC_F11, KC_F12, UG_TOGG, UG_NEXT, KC_P7, KC_P8, KC_P9, KC_PSLS, _______,
  43. _______, KC_F5, KC_F6, KC_F7, KC_F8, UG_VALD, UG_VALU, KC_P4, KC_P5, KC_P6, KC_PAST, _______,
  44. _______, KC_F1, KC_F2, KC_F3, KC_F4, BL_TOGG, BL_UP, KC_P1, KC_P2, KC_P3, KC_PMNS, KC_PGUP,
  45. _______, _______, _______, _______, OOOOOOO, _______, KC_P0, KC_PDOT, KC_PENT, KC_PPLS, KC_PGDN),
  46. [2] = LAYOUT_planck_mit(
  47. _______, _______, _______, _______, _______, _______, _______, KC_QUOT, KC_EQL, KC_LBRC, KC_RBRC, KC_NUBS,
  48. KC_GRAVE, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
  49. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  50. _______, _______, _______, _______, _______, _______, OOOOOOO, KC_HOME, KC_PGDN, KC_PGUP, KC_END),
  51. [3] = LAYOUT_planck_mit(
  52. _______, _______, _______, _______, _______, _______, KC_COPY, KC_PGUP, _______, _______, KC_PASTE, KC_DEL,
  53. _______, _______, _______, KC_PGDN, _______, _______, KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT, _______, _______,
  54. _______, _______, KC_CUT, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  55. _______, _______, _______, OOOOOOO, _______, _______, _______, _______, _______, _______, _______),
  56. [4] = LAYOUT_planck_mit(
  57. _______, _______, _______, _______, _______, _______, _______, KC_ACL0, KC_ACL1, KC_ACL2, _______, _______,
  58. KC_PSCR, KC_INS, KC_MUTE, KC_VOLD, KC_VOLU, _______, KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R, _______, _______,
  59. KC_CAPS, _______, KC_MPLY, KC_MRWD, KC_MFFD, _______, _______, _______, KC_BTN1, KC_BTN2, _______, _______,
  60. _______, _______, _______, _______, _______, _______, _______, OOOOOOO, _______, _______, _______),
  61. };