Skip to content

Instantly share code, notes, and snippets.

View carljparker's full-sized avatar

Carl Parker carljparker

View GitHub Profile
@lubert
lubert / ctrloptionterm.json
Last active September 19, 2022 19:13
Karabiner Elements - Swap left command and option keys only in terminal
{
"title": "Swap left command and option keys only in Terminal",
"rules": [
{
"description": "Change left_command to left_option",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_command"
@patik
patik / styles.css
Last active April 20, 2024 06:59 — forked from joshbode/numbered_headings.md
Numbered Headings in Markdown via CSS
body { counter-reset: h1counter h2counter h3counter h4counter h5counter h6counter; }
h1 { counter-reset: h2counter; }
h2 { counter-reset: h3counter; }
h3 { counter-reset: h4counter; }
h4 { counter-reset: h5counter; }
h5 { counter-reset: h6counter; }
h6 {}
h2:before {