forked from jasonhazel/qmk_hazel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
631afdb
commit 432ecd5
Showing
3 changed files
with
151 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
keyboards/jasonhazel/bad_wings/keymaps/youknowfred/config.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#pragma once | ||
#include "config_common.h" | ||
|
||
#define TAPPING_TERM 200 | ||
#define PERMISSIVE_HOLD | ||
#define IGNORE_MOD_TAP_INTERRUPT | ||
#define TAPPING_FORCE_HOLD | ||
#define TAPPING_TERM_PER_KEY | ||
|
||
#define ONESHOT_TAP_TOGGLE 10 | ||
#define ONESHOT_TIMEOUT 500 | ||
#define COMBO_TERM 100 | ||
#define COMBO_TERM_PER_COMBO | ||
|
||
#define DOUBLE_TAP_SHIFT_TURNS_ON_CAPS_WORD | ||
|
||
// disable shit | ||
#define NO_MUSIC_MODE | ||
|
||
#undef LOCKING_SUPPORT_ENABLE | ||
#undef LOCKING_RESYNC_ENABLE | ||
|
||
#define CIRQUE_PINNACLE_TAP_ENABLE | ||
#define CIRQUE_PINNACLE_POSITION_MODE CIRQUE_PINNACLE_ABSOLUTE_MODE | ||
#define CIRQUE_DEVICE_GESTURES_SCROLL_ENABLE |
115 changes: 115 additions & 0 deletions
115
keyboards/jasonhazel/bad_wings/keymaps/youknowfred/keymap.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
#include QMK_KEYBOARD_H | ||
|
||
enum layers { | ||
_ALPHA, | ||
_SYMBOL, | ||
_NUMBER, | ||
_NAVIGATION, | ||
LAYER_LENGTH | ||
}; | ||
|
||
|
||
enum tapdances { | ||
TD_QESC, | ||
TD_SBKT, | ||
TD_CBKT, | ||
TD_PARN, | ||
TD_LTGT, | ||
TD_ATAB, | ||
TAPDANCE_LENGTH | ||
}; | ||
|
||
enum combos { | ||
COMBO_NAVIGATION, | ||
COMBO_LENGTH | ||
}; | ||
|
||
|
||
// begin tapdances | ||
#define KC_QESC TD(TD_QESC) | ||
#define KC_SBKT TD(TD_SBKT) | ||
#define KC_CBKT TD(TD_CBKT) | ||
#define KC_PARN TD(TD_PARN) | ||
#define KC_LTGT TD(TD_LTGT) | ||
#define KC_ATAB TD(TD_ATAB) | ||
|
||
#define KC_GUIX LGUI_T(KC_X) | ||
#define KC_ALTC LALT_T(KC_C) | ||
|
||
// oneshots | ||
#define KC_OSFT OSM(MOD_LSFT) | ||
#define KC_OALT OSM(MOD_LALT) | ||
|
||
// layer changing | ||
#define KC_OSYM OSL(_SYMBOL) | ||
#define KC_ONUM LT(_NUMBER, KC_BSPC) | ||
|
||
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) { | ||
switch(keycode) { | ||
case KC_GUIX: | ||
case KC_ALTC: | ||
return TAPPING_TERM * 2; | ||
default: | ||
return TAPPING_TERM; | ||
} | ||
} | ||
|
||
// tapdances | ||
qk_tap_dance_action_t tap_dance_actions[] = { | ||
[TD_QESC] = ACTION_TAP_DANCE_DOUBLE(KC_Q, KC_ESC), | ||
[TD_SBKT] = ACTION_TAP_DANCE_DOUBLE(KC_LBRC, KC_RBRC), | ||
[TD_CBKT] = ACTION_TAP_DANCE_DOUBLE(KC_LCBR, KC_RCBR), | ||
[TD_PARN] = ACTION_TAP_DANCE_DOUBLE(KC_LPRN, KC_RPRN), | ||
[TD_LTGT] = ACTION_TAP_DANCE_DOUBLE(KC_LABK, KC_RABK), | ||
[TD_ATAB] = ACTION_TAP_DANCE_DOUBLE(KC_A, KC_TAB) | ||
}; | ||
// end tapdances | ||
|
||
uint16_t COMBO_LEN = COMBO_LENGTH; | ||
|
||
const uint16_t PROGMEM combo_navigation[] = { KC_OSYM, KC_ONUM, COMBO_END }; | ||
combo_t key_combos[] = { | ||
[COMBO_NAVIGATION] = COMBO(combo_navigation, OSL(_NAVIGATION)), | ||
}; | ||
|
||
uint16_t get_combo_term(uint16_t index, combo_t *combo) { | ||
switch(index) { | ||
case COMBO_NAVIGATION: // extending the combo term here helps reduce sticky layers some more. | ||
return 250; | ||
default: | ||
return COMBO_TERM; | ||
} | ||
} | ||
// end combos | ||
|
||
|
||
// begin layers | ||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[_ALPHA] = LAYOUT( | ||
KC_QESC, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, \ | ||
KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_QUOT, \ | ||
KC_Z, KC_GUIX, KC_ALTC, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, \ | ||
KC_LCTL, KC_OSYM, KC_OSFT, KC_SPC, KC_ONUM, KC_ENT | ||
), | ||
[_SYMBOL] = LAYOUT( | ||
KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_PIPE, KC_NO, \ | ||
KC_GRV, KC_TILD, KC_UNDS, KC_EQL, KC_NO, KC_SBKT, KC_CBKT, KC_PARN, KC_LTGT, KC_BACKSLASH, \ | ||
KC_NO, KC_NO, KC_PLUS, KC_MINS, KC_NO, KC_NO, KC_NO, KC_COLN, KC_DOT, KC_SCLN, \ | ||
KC_LCTL, KC_OSYM, KC_OSFT, KC_SPC, KC_ONUM, KC_ENT | ||
), | ||
[_NUMBER] = LAYOUT( | ||
KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, \ | ||
KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, \ | ||
KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_DOT, KC_NO, \ | ||
KC_LCTL, KC_OSYM, KC_OSFT, KC_SPC, KC_ONUM, KC_ENT | ||
), | ||
[_NAVIGATION] = LAYOUT( | ||
KC_NO, KC_F2, KC_NO, KC_NO, KC_NO, KC_NO, KC_HOME, KC_UP, KC_END, KC_BSPC, \ | ||
KC_TAB, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_LEFT, KC_DOWN, KC_RIGHT, KC_ENT, \ | ||
KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_MPRV, KC_MPLY, KC_MNXT, KC_DEL, \ | ||
KC_LCTL, KC_OSYM, KC_OSFT, KC_SPC, KC_ONUM, KC_ENT | ||
) | ||
}; | ||
|
||
|
||
|
11 changes: 11 additions & 0 deletions
11
keyboards/jasonhazel/bad_wings/keymaps/youknowfred/rules.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Bad Wings Specific | ||
TRACKPAD_ENABLE = yes | ||
|
||
# General QMK | ||
GRAVE_ESC_ENABLE = no | ||
SPACE_CADET_ENABLE = no | ||
|
||
CAPS_WORD_ENABLE = yes | ||
KEY_OVERRIDE_ENABLE = yes | ||
COMBO_ENABLE = yes | ||
TAP_DANCE_ENABLE = yes |