forked from qmk/qmk_firmware
-
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
Showing
4 changed files
with
144 additions
and
976 deletions.
There are no files selected for viewing
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
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
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,39 @@ | ||
#ifndef CONFIG_USER_H | ||
#define CONFIG_USER_H | ||
|
||
#include "../../config.h" | ||
|
||
#define PRIYADI_PLANCK | ||
|
||
/* bootmagic salt key */ | ||
#define BOOTMAGIC_KEY_SALT KC_ESC | ||
|
||
/* skip bootmagic and eeconfig */ | ||
#define BOOTMAGIC_KEY_SKIP KC_SPACE | ||
|
||
#define PREVENT_STUCK_MODIFIERS | ||
|
||
#define UNICODE_TYPE_DELAY 0 | ||
|
||
#define LAYOUT_DVORAK | ||
#define LAYOUT_COLEMAK | ||
#define LAYOUT_NORMAN | ||
#define LAYOUT_WORKMAN | ||
|
||
#define DOUBLESPACE_LAYER_ENABLE | ||
// #define TOLELOT_ENABLE | ||
|
||
#define KEYMAP( \ | ||
k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, \ | ||
k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, \ | ||
k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, \ | ||
k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4c \ | ||
) \ | ||
{ \ | ||
{k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c}, \ | ||
{k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c}, \ | ||
{k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c}, \ | ||
{k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4c} \ | ||
} | ||
|
||
#endif |
Oops, something went wrong.