keymap.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <<<<<<< HEAD
  2. #include "atreus.h"
  3. /*
  4. * Keyboard: Atreus
  5. * Keymap: replicaJunction
  6. * Version: 0.1
  7. *
  8. * This keymap is designed to complement my Ergodox keyboard layout, found in keyboards/ergodox_ez.
  9. * The Atreus keyboard is a 40% board whose design was heavily influenced by the Ergodox, and I now
  10. * have both keyboards, so I've designed these layouts in an effort to make switching between the
  11. * two as easy as possible.
  12. *
  13. * Clearly, the Atreus is the limiting factor in this equation, so I've taken heavy advantage of
  14. * function and dual-role keys.
  15. *
  16. * The default key layout in this keymap is Colemak-ModDH. Information on that layout can be found
  17. * here: https://colemakmods.github.io/mod-dh/
  18. */
  19. =======
  20. // this is the style you want to emulate.
  21. // This is the canonical layout file for the Quantum project. If you want to add another keyboard,
  22. #include "atreus.h"
  23. >>>>>>> 32725dae5ba50f41bf16a80083727f08beaea7c6
  24. // Each layer gets a name for readability, which is then used in the keymap matrix below.
  25. // The underscores don't mean anything - you can have a layer called STUFF or any other name.
  26. // Layer names don't all need to be of the same length, obviously, and you can also skip them
  27. // entirely and just use numbers.
  28. // Note that whatever is set as layer 0 will be the default layer of the keyboard.
  29. #define _CO 0 // Colemak
  30. #define _QW 1 // QWERTY
  31. #define _NU 2 // Numpad
  32. #define _FN 3 // Function
  33. #define _DV 4 // Dvorak
  34. // Quick alias for visual sake
  35. #define _______ KC_TRNS
  36. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  37. [_CO] = {
  38. {KC_Q, KC_W, KC_F, KC_P, KC_B, _______, KC_J, KC_L, KC_U, KC_Y, KC_SCLN },
  39. {KC_A, KC_R, KC_S, KC_T, KC_G, _______, KC_M, KC_N, KC_E, KC_I, KC_O },
  40. {KC_Z, KC_X, KC_C, KC_D, KC_V, KC_LCTL, KC_K, KC_H, KC_COMM, KC_DOT, KC_SLSH },
  41. {KC_ESC, KC_TAB, KC_LGUI, KC_LSFT, KC_BSPC, KC_LALT, KC_SPC, MO(_NU), KC_MINS, KC_QUOT, KC_ENT }
  42. },
  43. [_DV] = {
  44. {KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, _______, KC_F, KC_G, KC_C, KC_R, KC_L },
  45. {KC_A, KC_O, KC_E, KC_U, KC_I, _______, KC_D, KC_H, KC_T, KC_N, KC_S },
  46. {KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_LCTL, KC_B, KC_M, KC_W, KC_V, KC_Z },
  47. {KC_ESC, KC_TAB, KC_LGUI, KC_LSFT, KC_BSPC, KC_LALT, KC_SPC, MO(_NU), KC_MINS, KC_SLSH, KC_ENT }
  48. },
  49. [_QW] = { /* Qwerty */
  50. {KC_Q, KC_W, KC_E, KC_R, KC_T, _______, KC_Y, KC_U, KC_I, KC_O, KC_P },
  51. {KC_A, KC_S, KC_D, KC_F, KC_G, _______, KC_H, KC_J, KC_K, KC_L, KC_SCLN },
  52. {KC_Z, KC_X, KC_C, KC_V, KC_B, KC_LCTL, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH },
  53. {KC_ESC, KC_TAB, KC_LGUI, KC_LSFT, KC_BSPC, KC_LALT, KC_SPC, MO(_NU), KC_MINS, KC_QUOT, KC_ENT }
  54. },
  55. [_NU] = { /* Numbers and symbols */
  56. {KC_EXLM, KC_HOME, KC_UP, KC_END, KC_PGUP, _______, KC_PGUP, KC_7, KC_8, KC_9, KC_ASTR},
  57. {KC_HASH, KC_LEFT, KC_DOWN, KC_RGHT, KC_PGDN, _______, KC_PGDN, KC_4, KC_5, KC_6, KC_PLUS},
  58. {KC_LBRC, KC_RBRC, KC_LPRN, KC_RPRN, KC_AMPR, KC_LCTL, KC_TILD, KC_1, KC_2, KC_3, KC_BSLS},
  59. {MO(_FN), KC_INS, KC_LGUI, KC_LSFT, KC_DEL, KC_LALT, KC_SPC, _______, KC_DOT, KC_0, KC_EQL}
  60. },
  61. [_FN] = { /* Functions */
  62. {KC_INS, KC_HOME, KC_UP, KC_END, KC_PGUP, _______, KC_UP, KC_F7, KC_F8, KC_F9, KC_F10},
  63. {KC_DELT, KC_LEFT, KC_DOWN, KC_RGHT, KC_DOWN, _______, KC_DOWN, KC_F4, KC_F5, KC_F6, KC_F11},
  64. {_______, _______, _______, _______, _______, KC_LCTL, _______, KC_F1, KC_F2, KC_F3, KC_F12},
  65. {_______, _______, KC_LGUI, KC_LSFT, KC_BSPC, KC_LALT, KC_SPC, _______, _______, _______, RESET}
  66. }};
  67. const uint16_t PROGMEM fn_actions[] = {
  68. };
  69. const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
  70. {
  71. // MACRODOWN only works in this function
  72. switch(id) {
  73. case 0:
  74. if (record->event.pressed) {
  75. register_code(KC_RSFT);
  76. } else {
  77. unregister_code(KC_RSFT);
  78. }
  79. break;
  80. }
  81. return MACRO_NONE;
  82. };