zer09.h 381 B

123456789101112131415161718
  1. #ifndef USERSPACE
  2. #define USERSPACE
  3. #include "quantum.h"
  4. enum custom_keycodes { CK_SAFE = SAFE_RANGE, RGUP, RGDWN, NEWPLACEHOLDER };
  5. #define _______ KC_TRNS
  6. #define KC_RGUP RGUP
  7. #define KC_RGDWN RGDWN
  8. #define _BL 0 // The base layer
  9. #define _UL 1 // The up layer
  10. #define _DL 2 // The down layer
  11. #define _VL 3 // The shifted up layer
  12. #define _AL 4 // The assorted layer
  13. #endif