Skip to content

Instantly share code, notes, and snippets.

View 80x24's full-sized avatar

kyom 80x24

  • Seoul
  • 22:01 (UTC +09:00)
View GitHub Profile
@80x24
80x24 / planck.json
Last active December 27, 2022 00:35
qmk keymap planck.json
{
"version": 1,
"notes": "",
"documentation": "\"This file is a QMK Configurator export. You can import this at <https://config.qmk.fm>. It can also be used directly with QMK's source code.\n\nTo setup your QMK environment check out the tutorial: <https://docs.qmk.fm/#/newbs>\n\nYou can convert this file to a keymap.c using this command: `qmk json2c {keymap}`\n\nYou can compile this keymap using this command: `qmk compile {keymap}`\"\n",
"keyboard": "planck/rev6",
"keymap": "planck",
"layout": "LAYOUT_ortho_4x12",
"layers": [
[
"KC_TAB",
@80x24
80x24 / preonic.json
Last active December 14, 2023 09:12
qmk keymap preonic.json
{
"version": 1,
"notes": "",
"documentation": "\"This file is a QMK Configurator export. You can import this at <https://config.qmk.fm>. It can also be used directly with QMK's source code.\n\nTo setup your QMK environment check out the tutorial: <https://docs.qmk.fm/#/newbs>\n\nYou can convert this file to a keymap.c using this command: `qmk json2c {keymap}`\n\nYou can compile this keymap using this command: `qmk compile {keymap}`\"\n",
"keyboard": "preonic/rev3",
"keymap": "preonic",
"layout": "LAYOUT_ortho_5x12",
"layers": [
[
"KC_ESC",
@80x24
80x24 / tailwind.config.cjs
Last active May 11, 2022 03:08
tailwindcss theme colors based on material design 3 (M3) color system
module.exports = {
content: ['./src/**/*.{html,js,ts,svelte}'],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#6750A4',
container: '#EADDFF',
},
secondary: {
@80x24
80x24 / SortSelector.vue
Created December 28, 2020 09:55
Vuetify, drag and drop sort v-select, v-autocomplete, v-combobox with vue-draggable
<template>
<div>
<v-combobox
v-model="selectedSync"
:items="[...selectedSync, ...itemsSync]"
multiple
item-text="text"
item-value="value"
return-object
>