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.

19 lines
398 B

  1. #pragma once
  2. #include "quantum.h"
  3. enum userspace_layers {
  4. _BL = 0, // Base Layer
  5. _FL, // Function Layer
  6. _AL, // Arrow Layer
  7. _CL // Control Layer
  8. };
  9. // Enum of custom keycodes defined in process_record_user
  10. enum keycodes {
  11. KC_FNX, // Hold for FN layer, tap to toggle ARROWS layer.
  12. KC_MAC, // Text macro.
  13. };
  14. // Custom #defined keycodes
  15. #define KC_CTCP CTL_T(KC_CAPS)