csc027.h 485 B

1234567891011121314151617181920212223242526272829
  1. #pragma once
  2. #include "quantum.h"
  3. #include "defines.h"
  4. enum custom_keycodes {
  5. // Layer Keycodes
  6. LOWER = SAFE_RANGE,
  7. RAISE,
  8. MC_first,
  9. // Macro Keycodes
  10. CUSTOM_MACROS(CUSTOM_ENUM, DROP, COMMA_DELIM),
  11. MC_last
  12. };
  13. enum custom_layers {
  14. _QW = 0, // Qwerty
  15. _RS, // Raise
  16. _LW, // Lower
  17. _MS, // Mouse
  18. _GT, // Git
  19. _CN, // Convenience
  20. _GG, // General Gaming
  21. _CS // Counter-Strike: Global Offensive
  22. };