aboutsummaryrefslogtreecommitdiff
path: root/keyboards/niu_mini/keymaps
diff options
context:
space:
mode:
authorxton <cmdpix@mac.com>2018-05-12 08:52:11 -0700
committerDrashna Jaelre <drashna@live.com>2018-05-12 08:52:11 -0700
commit05be1de1aa35f15b71ebfdf2f142fca50609ef31 (patch)
tree4db990cd5fcb659d3301b10a129b4d03bdc43ba5 /keyboards/niu_mini/keymaps
parent5b503cc5438fdc4f9b13ae3d697d28c3824f2b75 (diff)
downloadqmk_firmware-05be1de1aa35f15b71ebfdf2f142fca50609ef31.tar.gz
qmk_firmware-05be1de1aa35f15b71ebfdf2f142fca50609ef31.zip
Xton's first keymap! (#2941)
* FORK! * WIP - just how i like it * empty * more movement * mouse keys * more vimminess * append/insert shift * WIP - vim macros * blocked out layer below in cmd mode. also, about to restart my cmd approach. * WIP - new vim layer ripoff of the ergodox one, but rewritten as a state machine. * debugged some, got key repeat working * moooar coverage * moooar coverage * regular vis mode * basically done with basics. * some refactoring - common movement sequences into helper function - added some rgb controls * modkey passthru feature * stdized on cmd-left/right instead of ctrl-a/e sadly. as there's no reliable shift-ctrl-e * indicator lights * moved vim layer into userspace * cleaned up some yanking edge cases * docs and some tweaks to layerescapes * updated/added license strings * updated comments * moved config changes to keymap * spurious changes removed
Diffstat (limited to 'keyboards/niu_mini/keymaps')
-rw-r--r--keyboards/niu_mini/keymaps/readme.md1
-rw-r--r--keyboards/niu_mini/keymaps/xtonhasvim/config.h49
-rw-r--r--keyboards/niu_mini/keymaps/xtonhasvim/keymap.c210
-rw-r--r--keyboards/niu_mini/keymaps/xtonhasvim/readme.md9
-rw-r--r--keyboards/niu_mini/keymaps/xtonhasvim/rules.mk6
5 files changed, 275 insertions, 0 deletions
diff --git a/keyboards/niu_mini/keymaps/readme.md b/keyboards/niu_mini/keymaps/readme.md
index d4c2bbc80..8a263ed0b 100644
--- a/keyboards/niu_mini/keymaps/readme.md
+++ b/keyboards/niu_mini/keymaps/readme.md
@@ -21,3 +21,4 @@ When adding your keymap to this list, keep it organised alphabetically (select l
21- **default** default layout from KBDFans 21- **default** default layout from KBDFans
22- **mason** 22- **mason**
23- **planck** Planck default layout 23- **planck** Planck default layout
24- **xtonhasvim** A Planck-like layout with a few tweaks and a vim emulation layer.
diff --git a/keyboards/niu_mini/keymaps/xtonhasvim/config.h b/keyboards/niu_mini/keymaps/xtonhasvim/config.h
new file mode 100644
index 000000000..a22bcab0f
--- /dev/null
+++ b/keyboards/niu_mini/keymaps/xtonhasvim/config.h
@@ -0,0 +1,49 @@
1#ifndef CONFIG_USER_H
2#define CONFIG_USER_H
3
4#include "../../config.h"
5
6#define MUSIC_MASK (keycode != KC_NO)
7
8/*
9 * MIDI options
10 */
11
12/* Prevent use of disabled MIDI features in the keymap */
13//#define MIDI_ENABLE_STRICT 1
14
15/* enable basic MIDI features:
16 - MIDI notes can be sent when in Music mode is on
17*/
18
19#define MIDI_BASIC
20
21/* enable advanced MIDI features:
22 - MIDI notes can be added to the keymap
23 - Octave shift and transpose
24 - Virtual sustain, portamento, and modulation wheel
25 - etc.
26*/
27//#define MIDI_ADVANCED
28
29/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
30//#define MIDI_TONE_KEYCODE_OCTAVES 2
31
32// help for fast typist+dual function keys?
33#define PERMISSIVE_HOLD
34
35/* disable debug print */
36#define NO_DEBUG
37
38/* disable print */
39#define NO_PRINT
40
41/* speed up mousekeys a bit */
42#define MOUSEKEY_DELAY 50
43#define MOUSEKEY_INTERVAL 20
44#define MOUSEKEY_MAX_SPEED 8
45#define MOUSEKEY_TIME_TO_MAX 30
46#define MOUSEKEY_WHEEL_MAX_SPEED 8
47#define MOUSEKEY_WHEEL_TIME_TO_MAX 40
48
49#endif
diff --git a/keyboards/niu_mini/keymaps/xtonhasvim/keymap.c b/keyboards/niu_mini/keymaps/xtonhasvim/keymap.c
new file mode 100644
index 000000000..f591786b8
--- /dev/null
+++ b/keyboards/niu_mini/keymaps/xtonhasvim/keymap.c
@@ -0,0 +1,210 @@
1 /* Copyright 2015-2017 Christon DeWan
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#include QMK_KEYBOARD_H
18#include "action_layer.h"
19#include "xtonhasvim.h"
20
21/************************************
22 * states
23 ************************************/
24
25enum layers {
26 _QWERTY,
27 _LOWER,
28 _RAISE,
29 _ADJUST,
30 _MOVE,
31 _MOUSE
32};
33
34/************************************
35 * keymaps!
36 ************************************/
37
38const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
39
40/* Qwerty
41 * ,-----------------------------------------------------------------------------------.
42 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp |
43 * |------+------+------+------+------+-------------+------+------+------+------+------|
44 * | Ctrl*| A* | S | D | F | G | H | J | K | L | ;* | " |
45 * |------+------+------+------+------+------|------+------+------+------+------+------|
46 * | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
47 * |------+------+------+------+------+------+------+------+------+------+------+------|
48 * | Mouse| | Alt | GUI |Lower*| Space |Raise*| GUI | Alt | | Vim |
49 * `-----------------------------------------------------------------------------------'
50 *
51 * - Ctrl acts as Esc when tapped.
52 * - Holding A or ; switches to movement layer.
53 * - Raise and Lower are one-shot layers.
54 */
55[_QWERTY] = {
56 {KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC},
57 {LCTL_T(KC_ESC), LT(_MOVE,KC_A), KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, LT(_MOVE,KC_SCLN), KC_QUOT},
58 {KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, RSFT_T(KC_ENT) },
59 {TG(_MOUSE), X_____X, KC_LALT, KC_LGUI, OSL(_LOWER), KC_SPC, KC_SPC, OSL(_RAISE), KC_LGUI, KC_LALT, X_____X, VIM_START }
60},
61
62/* Lower
63 * ,-----------------------------------------------------------------------------------.
64 * | ~ | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | { | } | Bksp |
65 * |------+------+------+------+------+-------------+------+------+------+------+------|
66 * | Del | ! | @ | # | $ | % | ^ | & | * | ( | ) | | |
67 * |------+------+------+------+------+------|------+------+------+------+------+------|
68 * | | F7 | F8 | F9 | F10 | F11 | F12 | | | Home | End | |
69 * |------+------+------+------+------+------+------+------+------+------+------+------|
70 * | | | | | | | | Next | Vol- | Vol+ | Play |
71 * `-----------------------------------------------------------------------------------'
72 */
73[_LOWER] = {
74 {KC_TILD, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_BSPC},
75 {KC_DEL, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_PIPE},
76 {_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, KC_HOME, KC_END, _______},
77 {_______, TO(_QWERTY), _______, _______, _______, _______, _______, OSL(_ADJUST), KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY}
78},
79
80/* Raise
81 * ,-----------------------------------------------------------------------------------.
82 * | ` | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | Bksp |
83 * |------+------+------+------+------+-------------+------+------+------+------+------|
84 * | Del | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | \ |
85 * |------+------+------+------+------+------|------+------+------+------+------+------|
86 * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / |Pg Up |Pg Dn | |
87 * |------+------+------+------+------+------+------+------+------+------+------+------|
88 * | | | | | | | | Next | Vol- | Vol+ | Play |
89 * `-----------------------------------------------------------------------------------'
90 */
91[_RAISE] = {
92 {KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSPC},
93 {KC_DEL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS},
94 {_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, KC_PGUP, KC_PGDN, _______},
95 {_______, TO(_QWERTY), _______, _______, OSL(_ADJUST), _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY}
96},
97
98
99/* Adjust (Lower + Raise)
100 * ,-------------------------------------------------------------------------------------.
101 * |RGBPlain| Reset| | | | | | | | | | Del |
102 * |--------+------+------+------+------+-------------+------+------+------+------+------|
103 * |RGBMode-| | |Aud on|Audoff|AGnorm|AGswap| | | | |Lite+ |
104 * |--------+------+------+------+------+------|------+------+------+------+------+------|
105 * |RGBMode+|Voice-|Voice+|Mus on|Musoff|MIDIon|MIDIof| | | | |Lite- |
106 * |--------+------+------+------+------+------+------+------+------+------+------+------|
107 * | RGB | | | | | | | | | | |
108 * `-------------------------------------------------------------------------------------'
109 */
110[_ADJUST] = {
111 {RGB_MODE_PLAIN, RESET, DEBUG, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL },
112 {RGB_MODE_REVERSE, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, _______, _______, _______, _______, RGB_VAI},
113 {RGB_MODE_FORWARD, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, _______, _______, _______, _______, RGB_VAD},
114 {RGB_TOG, TO(_QWERTY), _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
115},
116
117
118/* movement layer (hold semicolon)
119 */
120[_MOVE] = {
121 {TO(_QWERTY), X_____X, X_____X, X_____X, X_____X, X_____X, KC_HOME, KC_PGDN, KC_PGUP, KC_END, X_____X, X_____X},
122 {_______, X_____X, LGUI(KC_LBRC), LGUI(LSFT(KC_LBRC)), LGUI(LSFT(KC_RBRC)), LGUI(KC_RBRC), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, X_____X, X_____X},
123 {_______, X_____X, X_____X, X_____X, X_____X, X_____X, X_____X, X_____X, X_____X, X_____X, X_____X, _______},
124 {X_____X, TO(_QWERTY), _______, _______, _______, X_____X, X_____X, _______, _______, _______, TO(_QWERTY), _______}
125},
126
127/* mouse layer
128 */
129[_MOUSE] = {
130 {TO(_QWERTY), X_____X, X_____X, KC_MS_UP, X_____X, X_____X, KC_MS_WH_LEFT, KC_MS_WH_DOWN, KC_MS_WH_UP, KC_MS_WH_RIGHT, X_____X, X_____X },
131 {_______, X_____X, KC_MS_LEFT, KC_MS_DOWN, KC_MS_RIGHT, X_____X, X_____X, KC_MS_BTN1, KC_MS_BTN2, KC_MS_BTN3, X_____X, X_____X},
132 {_______, X_____X, X_____X, X_____X, X_____X, X_____X, X_____X, X_____X, X_____X, X_____X, X_____X, _______},
133 {_______, TO(_QWERTY), _______, _______, _______, X_____X, X_____X, _______, _______, _______, TO(_QWERTY), _______}
134},
135
136/* vim edit mode. just has an escape -> _CMD key */
137[_EDIT] = {
138 {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______},
139 {VIM_START, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______},
140 {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______},
141 {_______, TO(_QWERTY), _______, _______, _______, _______, _______, _______, _______, _______, TO(_QWERTY), _______}
142},
143
144/* vim command layer.
145 */
146[_CMD] = {
147 {X_____X, X_____X, VIM_W, VIM_E, X_____X, X_____X, VIM_Y, VIM_U, VIM_I, VIM_O, VIM_P, X_____X},
148 {VIM_ESC, VIM_A, VIM_S, VIM_D, X_____X, VIM_G, VIM_H, VIM_J, VIM_K, VIM_L, X_____X, X_____X},
149 {VIM_SHIFT, X_____X, VIM_X, VIM_C, VIM_V, VIM_B, X_____X, X_____X, VIM_COMMA, VIM_PERIOD, X_____X, VIM_SHIFT},
150 {X_____X, TO(_QWERTY), _______, _______, X_____X, X_____X, X_____X, X_____X, _______, _______, TO(_QWERTY), X_____X}
151}
152
153};
154
155bool process_record_user(uint16_t keycode, keyrecord_t *record) {
156 if(process_record_xtonhasvim(keycode, record)) {
157 // do nothing so far
158 return true;
159 } else {
160 // already handled by vim
161 return false;
162 }
163}
164
165/** Set just 4 LEDs closest to the user. Slightly less annoying to bystanders.*/
166void rgbflag(uint8_t r, uint8_t g, uint8_t b) {
167 for(int i = 0; i < RGBLED_NUM; i++){
168 switch(i) {
169 case 9 ... 12:
170 // rgblight_setrgb_at(r,g,b,i);
171 led[i].r = r;
172 led[i].g = g;
173 led[i].b = b;
174 break;
175 default:
176 // rgblight_setrgb_at(0,0,0,i);
177 led[i].r = 0;
178 led[i].g = 0;
179 led[i].b = 0;
180 break;
181 }
182 }
183 rgblight_set();
184}
185
186uint32_t layer_state_set_user(uint32_t state) {
187 if(rgblight_get_mode() == 1) {
188 switch (biton32(state)) {
189 case _RAISE:
190 case _LOWER:
191 case _ADJUST:
192 rgbflag(0x00, 0x00, 0xFF);
193 break;
194 case _MOVE:
195 case _MOUSE:
196 rgbflag(0xFF, 0x00, 0x00);
197 break;
198 case _CMD:
199 rgbflag(0x00, 0xFF, 0x00);
200 break;
201 case _EDIT:
202 rgbflag(0x7A, 0x00, 0xFF);
203 break;
204 default: // for any other layers, or the default layer
205 rgbflag(0x00, 0xFF, 0xFF);
206 break;
207 }
208 }
209 return state;
210}
diff --git a/keyboards/niu_mini/keymaps/xtonhasvim/readme.md b/keyboards/niu_mini/keymaps/xtonhasvim/readme.md
new file mode 100644
index 000000000..9ff4ce1f1
--- /dev/null
+++ b/keyboards/niu_mini/keymaps/xtonhasvim/readme.md
@@ -0,0 +1,9 @@
1# Xton has a tiny keyboard! With Vim!
2
3Based on the standard Planck layout with a few changes:
4
5* Escape moved to dual-function with control.
6* Dedicated movement and mouse layers.
7* Top and middle row swapped in `_RAISE` and `_LOWER` because I never use F-keys.
8* Vim layers! See `users/xtonhasvim`.
9
diff --git a/keyboards/niu_mini/keymaps/xtonhasvim/rules.mk b/keyboards/niu_mini/keymaps/xtonhasvim/rules.mk
new file mode 100644
index 000000000..3a93f9fd8
--- /dev/null
+++ b/keyboards/niu_mini/keymaps/xtonhasvim/rules.mk
@@ -0,0 +1,6 @@
1ifndef QUANTUM_DIR
2 include ../../../../Makefile
3endif
4
5MOUSEKEY_ENABLE = yes
6BACKLIGHT_ENABLE = no