aboutsummaryrefslogtreecommitdiff
path: root/keyboards/amj60
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-10-15 16:17:47 -0400
committerJack Humbert <jack.humb@gmail.com>2017-10-15 16:17:47 -0400
commite64313cdb37890c7f8342956855abd751c6583be (patch)
tree01534e6c04fa24fde693c60e9532d13d8a8922c0 /keyboards/amj60
parent066525ab9ed35fad3a5d19279b92ff04c7e28dc1 (diff)
downloadqmk_firmware-e64313cdb37890c7f8342956855abd751c6583be.tar.gz
qmk_firmware-e64313cdb37890c7f8342956855abd751c6583be.zip
adds default keymap for amj60
Diffstat (limited to 'keyboards/amj60')
-rw-r--r--keyboards/amj60/keymaps/default/keymap.c59
-rw-r--r--keyboards/amj60/keymaps/iso_split_rshift/keymap.c2
-rw-r--r--keyboards/amj60/keymaps/maximized/keymap.c2
3 files changed, 59 insertions, 4 deletions
diff --git a/keyboards/amj60/keymaps/default/keymap.c b/keyboards/amj60/keymaps/default/keymap.c
new file mode 100644
index 000000000..5c0b374fe
--- /dev/null
+++ b/keyboards/amj60/keymaps/default/keymap.c
@@ -0,0 +1,59 @@
1
2#include "amj60.h"
3
4// Each layer gets a name for readability, which is then used in the keymap matrix below.
5// The underscores don't mean anything - you can have a layer called STUFF or any other name.
6// Layer names don't all need to be of the same length, obviously, and you can also skip them
7// entirely and just use numbers.
8#define _DEF 0
9#define _SPC 1
10
11// dual-role shortcuts
12#define SPACEDUAL LT(_SPC, KC_SPACE)
13
14
15// increase readability
16#define _______ KC_TRNS
17
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19 /* Keymap _DEF: Default Layer
20 * ,-----------------------------------------------------------.
21 * |Esc| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| \ | ~ |
22 * |-----------------------------------------------------------|
23 * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| bspc|
24 * |-----------------------------------------------------------|
25 * |Caps | A| S| D| F| G| H| J| K| L| ;| '| Return |
26 * |-----------------------------------------------------------|
27 * |Sft | Fn0| Z| X| C| V| B| N| M| ,| .| /| Sft |Fn2|
28 * |-----------------------------------------------------------|
29 * |Ctrl|Win |Alt | Space/Fn0 |Alt |Win |Menu|RCtl|
30 * `-----------------------------------------------------------'
31 */
32 [_DEF] = KEYMAP_MAX(
33 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, \
34 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC, \
35 KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, \
36 KC_LSFT, F(0), KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, F(1), \
37 KC_LCTL, KC_LALT, KC_LGUI, SPACEDUAL, KC_RGUI, KC_RALT, KC_RCTL, F(2)),
38
39 /* Keymap 1: F-and-vim Layer, modified with Space (by holding space)
40 * ,-----------------------------------------------------------.
41 * |PrSc| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12| | |
42 * |-----------------------------------------------------------|
43 * | |Paus| Up| [ | ] | | | | ( | ) | | | | Del |
44 * |-----------------------------------------------------------|
45 * | |Lft|Dwn|Rgt| | |Left|Down|Right|Up| | | PLAY |
46 * |-----------------------------------------------------------|
47 * | | | | | < | > | |M0 | | | | | Vol+ | |
48 * |-----------------------------------------------------------|
49 * | | | | |Alt |Prev|Vol-|Next|
50 * `-----------------------------------------------------------'
51 */
52 [_SPC] = KEYMAP_MAX(
53 KC_PSCR, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, \
54 _______, KC_PAUS, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL, \
55 _______, KC_LEFT, KC_DOWN, KC_RIGHT, _______, _______, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, _______, _______, KC_MPLY, \
56 _______, _______, _______, _______, _______, _______, KC_SPACE, M(0), _______, _______, _______, _______, KC_VOLU, _______, \
57 _______, _______, _______, _______, _______, KC_MPRV, KC_VOLD, KC_MNXT),
58
59};
diff --git a/keyboards/amj60/keymaps/iso_split_rshift/keymap.c b/keyboards/amj60/keymaps/iso_split_rshift/keymap.c
index 60fb0bfb0..ee6511f83 100644
--- a/keyboards/amj60/keymaps/iso_split_rshift/keymap.c
+++ b/keyboards/amj60/keymaps/iso_split_rshift/keymap.c
@@ -1,5 +1,3 @@
1// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
2// this is the style you want to emulate.
3 1
4#include "amj60.h" 2#include "amj60.h"
5 3
diff --git a/keyboards/amj60/keymaps/maximized/keymap.c b/keyboards/amj60/keymaps/maximized/keymap.c
index d2a4be59f..5c0b374fe 100644
--- a/keyboards/amj60/keymaps/maximized/keymap.c
+++ b/keyboards/amj60/keymaps/maximized/keymap.c
@@ -1,5 +1,3 @@
1// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
2// this is the style you want to emulate.
3 1
4#include "amj60.h" 2#include "amj60.h"
5 3