diff options
Diffstat (limited to 'users/hvp/hvp.h')
| -rw-r--r-- | users/hvp/hvp.h | 38 |
1 files changed, 34 insertions, 4 deletions
diff --git a/users/hvp/hvp.h b/users/hvp/hvp.h index b016da9e2..275838a49 100644 --- a/users/hvp/hvp.h +++ b/users/hvp/hvp.h | |||
| @@ -1,13 +1,43 @@ | |||
| 1 | /* Copyright 2021 hvp | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | |||
| 1 | #pragma once | 18 | #pragma once |
| 19 | #include "quantum.h" | ||
| 20 | #undef TAPPING_TERM | ||
| 21 | #define TAPPING_TERM 150 | ||
| 2 | 22 | ||
| 3 | #ifdef TAP_DANCE_ENABLE | 23 | #ifdef TAP_DANCE_ENABLE |
| 4 | # include "tap_dances.h" | 24 | # include "tap_dances.h" |
| 5 | #endif | 25 | #endif |
| 6 | #include "quantum.h" | ||
| 7 | 26 | ||
| 8 | #undef TAPPING_TERM | 27 | #ifdef TAPPING_TERM_PER_KEY |
| 9 | #define TAPPING_TERM 150 | 28 | # include "per_key.h" |
| 29 | #endif | ||
| 10 | 30 | ||
| 11 | // Keys | ||
| 12 | 31 | ||
| 13 | #define D_NAVI MT(MOD_LCTL | MOD_LSFT, KC_D) | 32 | #define D_NAVI MT(MOD_LCTL | MOD_LSFT, KC_D) |
| 33 | |||
| 34 | /* Home-row mods */ | ||
| 35 | #define LG_A MT(MOD_LGUI, KC_A) | ||
| 36 | #define LA_S MT(MOD_LALT, KC_S) | ||
| 37 | #define LS_D MT(MOD_LSFT, KC_D) | ||
| 38 | #define LC_F MT(MOD_LCTL, KC_F) | ||
| 39 | |||
| 40 | #define RC_H MT(MOD_RCTL, KC_H) | ||
| 41 | #define RS_J MT(MOD_RSFT, KC_J) | ||
| 42 | #define RA_K MT(MOD_RALT, KC_K) | ||
| 43 | #define RG_L MT(MOD_RGUI, KC_L) \ No newline at end of file | ||
