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
401 B

#pragma once
#include "quantum.h"
enum userspace_layers {
_BL = 0, // Base Layer
_FL, // Function Layer
_AL, // Arrow Layer
_CL // Control Layer
};
// Enum of custom keycodes defined in process_record_user
enum keycodes {
KC_FNX, // Hold for FN layer, tap to toggle ARROWS layer.
KC_VER, // Version macro.
};
// Custom #defined keycodes
#define KC_CTCP CTL_T(KC_CAPS)