2
0

keymap.c 672 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * PLANCK - Dvorak turkish
  3. * Keymap by @bbaserdem
  4. * Dvorak layout with multiple features
  5. * Most of the code is in the "user" directory.
  6. * Check qmk_firmware/users/bbaserdem for the main part of the code
  7. */
  8. #include "planck.h"
  9. #include "bbaserdem.h"
  10. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  11. // Main Dvorak layer
  12. [_DV] = DVORAK,
  13. // Turkish and special character overlay
  14. [_AL] = ALTCHAR,
  15. // Gaming layer
  16. [_GA] = GAME,
  17. // Numbers layer
  18. [_NU] = NUMBERS,
  19. // Settings layer
  20. [_SE] = SETTINGS,
  21. // Mouse emulation layer
  22. [_MO] = MOUSE,
  23. #ifdef MUSIC_ENABLE
  24. // Music mode
  25. [_MU] = MUSIC,
  26. #endif
  27. };