Skip to content

Instantly share code, notes, and snippets.

@shane0
Last active September 1, 2017 18:58
Show Gist options
  • Save shane0/13d9f5ff61ba377a324fa5d28440ff23 to your computer and use it in GitHub Desktop.
Save shane0/13d9f5ff61ba377a324fa5d28440ff23 to your computer and use it in GitHub Desktop.
qmk vortex core layout for planck

(Vortex Core) Planck Layout

http://vortexgear.tw/db/upload/webdata4/6vortex_20174207391967285.pdf

I wrote this so I could test the layout of the vortex core but it might be useful for people transitioning from the core to a planck

this layout is based on the vortex core's 3 default layers which are fn, fn1 and shift + fn1

the typical planck lower is fn1, raise is fn and holding both fn + fn1 overlays the symbol layer, the layer that is shift + fn1 on the vortex

some keys such as fn1, del, ptn, etc. were moved out of necessity and for convenience

/* Copyright 2015-2017 Jack Humbert
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "planck.h"
#include "action_layer.h"
extern keymap_config_t keymap_config;
enum planck_layers {
_QWERTY,
_FN,
_FN1,
_SFN1
};
enum planck_keycodes {
QWERTY = SAFE_RANGE,
FN,
FN1,
SFN1
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_QWERTY] = {
{KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC },
{KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT },
{KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, KC_DEL },
{KC_LCTL, KC_LGUI, KC_LALT, _______, FN1, KC_SPC, KC_SPC, FN, _______, KC_RALT, KC_MENU, KC_RCTL }
},
[_FN] = {
{_______, KC_VOLD, KC_VOLU, KC_MUTE, _______, _______, KC_SLCK, KC_PGUP, KC_UP, KC_PGDN, KC_PSCREEN, KC_PAUS},
{KC_CAPSLOCK, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, KC_HOME, KC_LEFT, KC_DOWN, KC_RIGHT, KC_INS, _______},
{_______, _______, _______, _______, _______, _______, KC_END, _______, _______, _______, _______, _______},
{_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
},
[_FN1] = {
{KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12 },
{KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_PMNS, KC_PEQL},
{_______, _______, _______, _______, _______, _______, KC_PSLS, KC_LBRACKET, KC_RBRACKET, KC_BSLASH, KC_SLSH, _______},
{_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
},
[_SFN1] = {
{KC_TILD, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______},
{S(KC_1), S(KC_2), S(KC_3), S(KC_4), S(KC_5), S(KC_6), S(KC_7), S(KC_8), KC_LPRN, KC_RPRN, KC_PLUS, _______},
{_______, _______, _______, _______, _______, KC_DQUO, KC_QUES, KC_LCBR, KC_RCBR, S(KC_BSLS), _______, _______},
{_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
},
};
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case QWERTY:
if (record->event.pressed) {
set_single_persistent_default_layer(_QWERTY);
}
return false;
break;
case FN:
if (record->event.pressed) {
layer_on(_FN);
update_tri_layer(_FN, _FN1, _SFN1);
} else {
layer_off(_FN);
update_tri_layer(_FN, _FN1, _SFN1);
}
return false;
break;
case FN1:
if (record->event.pressed) {
layer_on(_FN1);
update_tri_layer(_FN, _FN1, _SFN1);
} else {
layer_off(_FN1);
update_tri_layer(_FN, _FN1, _SFN1);
}
return false;
break;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment