Skip to content

Instantly share code, notes, and snippets.

View hlissner's full-sized avatar
🛠️
Chipping away at Doom v3.0

Henrik Lissner hlissner

🛠️
Chipping away at Doom v3.0
View GitHub Profile
@jordonbiondo
jordonbiondo / imenu-use-packge.el
Last active December 15, 2022 10:45
have imenu include use-package
;; in action: http://i.imgur.com/Tt2M0LC.gif
(add-to-list 'imenu-generic-expression
'("Used Packages"
"\\(^\\s-*(use-package +\\)\\(\\_<.+\\_>\\)" 2))
;; I also highly recommend imenu-anywhere to make developing your config even easier
@JeroenDStout
JeroenDStout / rain_world_pearls.md
Last active September 12, 2021 22:52 — forked from aytch/rain_world_pearls.md
The Mythology of Rain World

Overview

Pearls

  • Wastelands, Cyan - Five Pebble's Mistake
  • Industrial, Blue - The Mask Factory
  • Shore (Moon), Yellow - Sliver of Straw's News
  • Shore (Bridge), Purple - Iterators and Water
  • Sky Islands, Dark Blue - {Random chatlog}
  • Sky Islands, Dark Purple - {Random chatlog}
@ar1a
ar1a / lazyload.sh
Last active May 7, 2019 22:12
Lazy load function for zsh
#!/usr/bin/env zsh
# usage: lazyload <name> <path> [source ...] -- callback
lazyload() {
local name="$1"; shift
local spath="$1"; shift
local sources=()
while [[ $# -gt 0 ]]; do
case "$1" in
@mjlbach
mjlbach / gccEmacs.md
Last active December 6, 2023 10:34
Installing gccEmacs (native-comp) with Nix

WARNING: THIS GIST IS OUT OF DATE AND NO LONGER RELEVANT

  • Native-comp was enabled by default in nixpgks
  • Pgtk is not enabled by default, for that you can either override the derivation or use emacsPgtk from the nix-community emacs overlay if you don't want to build it yourself

Nix

Adding the overlay and configuring cachix