2
0

keymap.c 520 B

12345678910111213141516171819202122
  1. #include "felix.h"
  2. #include "action_layer.h"
  3. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  4. KEYMAP(
  5. KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS,
  6. KC_P7, KC_P8, KC_P9, KC_PPLS,
  7. KC_P4, KC_P5, KC_P6, KC_HOME,
  8. KC_P1, KC_P2, KC_P3, KC_END,
  9. KC_P0, KC_PEQL, KC_PDOT, KC_PENT),
  10. };
  11. void persistant_default_layer_set(uint16_t default_layer) {
  12. }
  13. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  14. switch (keycode) {
  15. }
  16. return true;
  17. }