Making keymaps based on userspace (#7812)
* hope this works * TF working with userspace * rules for tf * Fixed changed default files * delete old keymap * revert tf68 default to default Co-authored-by: Akaash Suresh <casa.akaash@gmail.com>arm_split
parent
37d7fd12e2
commit
6486c7809c
@ -0,0 +1 @@
|
||||
BOOTLOADER = atmel-dfu
|
@ -1,6 +1,29 @@
|
||||
#pragma once
|
||||
|
||||
#include "quantum.h"
|
||||
|
||||
void my_custom_function(void);
|
||||
#define BWORD LCTL(KC_BSPC)
|
||||
#define LWORD LCTL(KC_LEFT)
|
||||
#define RWORD LCTL(KC_RIGHT)
|
||||
#define JUMPBACK LSFT(KC_TAB)
|
||||
#define UNDO LCTL(KC_Z)
|
||||
#define XPANDR LCTL(LSFT(KC_X))
|
||||
#define NTAB LCTL(KC_T)
|
||||
#define CTAB LCTL(KC_W)
|
||||
#define XPANDR LCTL(LSFT(KC_X))
|
||||
#define CMDBSP MT(MOD_LGUI, KC_BSPC)
|
||||
#define ALTDEL MT(MOD_LALT, KC_DEL)
|
||||
|
||||
// Define all of
|
||||
enum custom_keycodes {
|
||||
KC_MAKE = SAFE_RANGE,
|
||||
CSPEAK,
|
||||
SPEAK1,
|
||||
SPEAK2,
|
||||
SPEAK3,
|
||||
SPEAK4,
|
||||
PARADOWN,
|
||||
WREFRESH,
|
||||
PMERGE,
|
||||
REMCAPS,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue