/emg/ - Emacs Guix Gordon Freeman

Rekieta Law edition

>General Emacs resources
gnu.org/software/emacs/manual/emacs.html (GNU Emacs Manual)
emacswiki.org (Emacs Wiki)
github.com/emacs-tw/awesome-emacs (Big list of packages)
github.com/thinkhuman/writingwithemacs (Tips for prose writing in Emacs)

>Tutorials
C-h t (Interactive Tutorial)
gnu.org/software/emacs/tour (GNU Emacs Tour)
youtube.com/playlist?list=PLX2044Ew-UVVv31a0-Qn3dA6Sd_-NyA1n (General Introduction)
youtube.com/playlist?list=PLVtKhBrRV_ZkPnBtt_TD1Cs9PJlU0IIdE (Org Mode)
youtube.com/playlist?list=PL8Bwba5vnQK14z96Gil86pLMDO2GnOhQ6 (Advanced Configuration)

>(Self) Documentation
C-h k (Keybinds)
C-h o (Functions and Variables)
C-h i (Assorted Manuals)

>Premade Configs
=Make your own=
github.com/hlissner/doom-emacs/tree/develop (Doom Emacs)
github.com/syl20bnr/spacemacs (Spacemacs (heavy))
github.com/snackon/Witchmacs (Witchmacs)

>Reduce Startup Time
use-package defer
pastebin.com/mrPsnUas (Disable GC during startup)
emacswiki.org/emacs/EmacsAsDaemon (Emacs as Daemon)
akrl.sdf.org/gccemacs.html (Native Compilation, stable, merged into Emacs 28)
emacswiki.org/emacs/SetupEl

>Changing Default Keybinds
pastebin.com/2hg4g3C6

>Programming resources for Emacs Lisp, Common Lisp, Scheme and Clojure:
pastebin.com/nyTQp7qi

>Troubleshooting
If there seems to be a bug (or complicated issue), anons may ask you to compose an MWE (minimum working example).
To create an MWE, try the following:
1) start emacs with "emacs -q". This disables your init.
2) try to reproduce your issue with as few settings changed and packages (manually) loaded as possible.
These steps ensure that other anons can replicate your problem if it's something more involved. Sometimes you even find the cause yourself this way, too!

Previous thread:

Attached: riminal-order.png (1275x715, 648.95K)

Other urls found in this thread:

github.com/admich/Doors
twitter.com/AnonBabble

> e-celeb in thumbnail
Please consider kissing the ground at terminal velocity. Anyways, just here to report Emacs work great for meetings.

>lamda in thumbnail
Please consider a promotion. Anyway, just here to report that Emacs is decent for text editing.

Samefag

(((Rekieta)))

Scheme!

Attached: DdJT5YIUQAEnN1H.jpg (1000x800, 138.54K)

Racker

dead?

has anyone gotten doors running

doors?

github.com/admich/Doors

...

How do I get a Scheme gf?

>>Any Forums

>he doesn't pipe his org TODO items into conky

gnu Emacs

Use EXWM.

Racket!

Attached: 1422053000559.gif (480x810, 2.91M)

I don't like the way Racket treats arrays

does racket let me acquire a meeper gf?

(cl-defstruct (temp/test-1
(:constructor test-1-make)
(:conc-name nil))
host
port
password)
(cl-defstruct (temp/test-2
(:constructor test-2-make)
(:conc-name nil))
host
port
password)

(setq temp/a (test-1-make :host 'localhost :port 6600 :password nil))
(setq temp/b (test-2-make :host "127.0.0.1" :port "6600" :password ""))
(host temp/a)

>Debugger entered--Lisp error: (wrong-type-argument temp/test-2 #s(temp/test-1 :host localhost :port 6600 :password nil))
Works as intended.