You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
392 B

  1. #pragma once
  2. #include "quantum.h"
  3. /*
  4. * ,-----------------.
  5. * | | L01 | |
  6. * |-----------------+
  7. * | L10 | L11 | L12 |
  8. * |-----------------+
  9. * | L20 | L21 | L22 |
  10. * |-----------------'
  11. */
  12. #define LAYOUT( \
  13. L01, \
  14. L10, L11, L12, \
  15. L20, L21, L22 \
  16. ) \
  17. { \
  18. {KC_NO, L01,KC_NO }, \
  19. { L10, L11, L12 }, \
  20. { L20, L21, L22 } \
  21. }