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.
18 lines
350 B
18 lines
350 B
6 years ago
|
#pragma once
|
||
|
|
||
|
#include "quantum.h"
|
||
|
|
||
|
enum userspace_layers {
|
||
|
_BL = 0, // Base Layer
|
||
|
_FL, // Function Layer
|
||
|
_AL // Arrow Layer
|
||
|
};
|
||
|
|
||
|
// Enum of custom keycodes defined in process_record_user
|
||
|
enum keycodes {
|
||
|
KC_FNX, // Hold for FN layer, tap to toggle ARROWS layer.
|
||
|
};
|
||
|
|
||
|
// Custom #defined keycodes
|
||
|
#define KC_CTCP MT(KC_LCTL, KC_CAPS)
|