123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #pragma once
- #include "quantum.h"
- enum userspace_layers {
- _QWERTY,
- _LOWER,
- _RAISE,
- _ADJUST,
- _NUMPAD,
- _FN,
- _MOUSE
- };
- enum userspace_custom_keycodes {
- QWERTY = SAFE_RANGE,
-
- IT_CMLS,
- IT_DTMR,
- IT_SLQS,
- IT_APDQ,
- IT_SCCL,
- SECRET0,
- SECRET1,
- SECRET2,
- SECRET3,
- SECRET4,
- SECRET5,
- NEW_SAFE_RANGE
- };
- #define QWERTY DF(_QWERTY)
- #define LOWER TT(_LOWER)
- #define RAISE TT(_RAISE)
- #define NUMPAD TG(_NUMPAD)
- #define FN MO(_FN)
- #define TABFN LT(_FN, KC_TAB)
- #define ESCFN LT(_FN, KC_ESC)
- #define MS_B LT(_MOUSE, IT_B)
|