Skip to content

Commit

Permalink
Add combos to Atreus
Browse files Browse the repository at this point in the history
  • Loading branch information
evantravers committed May 2, 2024
1 parent 8013724 commit 565ac07
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use nix
9 changes: 9 additions & 0 deletions keyboards/keyboardio/atreus/keymaps/evantravers/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@

#include "evantravers.h"

const uint16_t PROGMEM apos_combo[] = {RALT_T(KC_L), RGUI_T(KC_SCLN), COMBO_END};
const uint16_t PROGMEM hyper_combo[] = {LGUI_T(KC_A), RGUI_T(KC_SCLN), COMBO_END};
const uint16_t PROGMEM esc_combo[] = {KC_Q, KC_W, COMBO_END};
combo_t key_combos[] = {
COMBO(apos_combo, KC_QUOT),
COMBO(hyper_combo, KC_F19),
COMBO(esc_combo, KC_ESC),
};

#define LAYOUT_atreus_base( \
K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, \
K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, \
Expand Down
1 change: 1 addition & 0 deletions users/evantravers/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ CONSOLE_ENABLE = no # Console for debug(+400)
COMMAND_ENABLE = no # Commands for debug and configuration
MACROS_ENABLED = no
CAPS_WORD_ENABLE = yes
COMBO_ENABLE = yes

0 comments on commit 565ac07

Please sign in to comment.