1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
|
#+TITLE: Emacs Configuration
#+AUTHOR: Thomas Voss
#+DATE: <2023-08-09 Wed>
#+DESCRIPTION: My Emacs configuration — before I ran ‘rm -rf ~/.config’ that is
#+STARTUP: overview
* Headers
The first thing we need in any configuration is a header setting
~lexical-binding~ to ~t~. This will allow us to have non-autistic behavior when
scoping variables.
#+BEGIN_SRC elisp :tangle early-init.el
;;; early-init.el --- Emacs early configuration file -*- lexical-binding: t -*-
#+END_SRC
#+BEGIN_SRC elisp :tangle init.el
;;; init.el --- Emacs configuration file -*- lexical-binding: t -*-
#+END_SRC
* Early Init File
:PROPERTIES:
:header-args: :tangle early-init.el
:END:
** Numerical Constants
These are not really important, but nice to have to make the following
configuration more readable. The reason they’re defined in the ~early-init.el~
is simply because I need to use them here.
#+BEGIN_SRC elisp
(defconst 1-KiB 1024
"The number of bytes in 1 kibibyte.")
(defconst 1-MiB (* 1-KiB 1024)
"The number of bytes in 1 mebibyte.")
(defconst 1-GiB (* 1-MiB 1024)
"The number of bytes in 1 gibibyte.")
#+END_SRC
** XDG Directories
We want to define variables for the main XDG directories for Emacs to use.
These are nice for keeping things organized and out of the way.
#+BEGIN_SRC elisp
(defconst mm-cache-directory
(expand-file-name
"emacs"
(or (getenv "XDG_CACHE_HOME")
(expand-file-name ".cache" (getenv "HOME"))))
"The XDG-conformant cache directory that Emacs should use.")
(defconst mm-config-directory
(expand-file-name
"emacs"
(or (getenv "XDG_CONFIG_HOME")
(expand-file-name ".config" (getenv "HOME"))))
"The XDG-conformant config directory that Emacs should use.")
(defconst mm-data-directory
(expand-file-name
"emacs"
(or (getenv "XDG_DATA_HOME")
(expand-file-name ".local/share" (getenv "HOME"))))
"The XDG-conformant data directory that Emacs should use.")
#+END_SRC
We also need to ensure our directories actually exist.
#+BEGIN_SRC elisp
(mapc (lambda (x) (make-directory x t))
(list mm-cache-directory
mm-config-directory
mm-data-directory))
#+END_SRC
We don’t want to have all sorts of random garbage populating the configuartion
directory; let’s throw it all in the cache directory instead.
#+BEGIN_SRC elisp
(setq user-emacs-directory mm-cache-directory
auto-save-list-file-prefix (expand-file-name "auto-save-list/"
mm-cache-directory)
backup-directory-alist`(("." . ,(expand-file-name "backups"
mm-cache-directory))))
#+END_SRC
** Default Limits
These are just some limits Emacs abides by as far as garbage-collection and
process communication go. They’re pretty low by default though; any modern
system is capable of much higher.
#+BEGIN_SRC elisp
(setq gc-cons-threshold (* 512 1-MiB)
read-process-output-max 1-MiB)
#+END_SRC
** Package Management
Finally, we want to completely disable ~package.el~ since we’re going to be
using ~straight.el~ in the main configuration.
#+BEGIN_SRC elisp
(setq package-enable-at-startup nil)
#+END_SRC
* Init File
:PROPERTIES:
:header-args: :tangle init.el
:END:
** Helper Functions and -Macros
*** Shorter Lambdas
It’s annoying to have to write out ~(lambda () BODY)~ every time I want to write
a lambda that takes no args — a very common operation. The solution is to just
use an actual lambda. If I ever forget how to enter a lambda, it’s =C-x 8 RET=.
#+BEGIN_SRC elisp
(defmacro λ (&rest body)
"Convenience macro to create lambda functions that take no arguments with much
short and concise syntax. Calling ‘λ’ with BODY is equivalent to calling
‘lambda’ with an empty argument list and BODY."
(declare (pure t) (side-effect-free t))
`(lambda () ,@body))
#+END_SRC
*** Hooks from Modes
It is very often that I have a mode symbol and I want to extract the
corresponding hook from it. Luckily there’s a pretty standard naming convention
here.
#+BEGIN_SRC elisp
(defun mm-mode-to-hook (mode)
"Get the hook corresponding to MODE."
(declare (pure t) (side-effect-free t))
(intern (concat (symbol-name mode) "-hook")))
#+END_SRC
*** Tree-Sitter Modes
As I was writing this configuration, Emacs 29 released on the Arch repositories
with native support for ~tree-sitter~. As a result many major-modes now have two
versions — a regular version and a ~tree-sitter~ version. I should have pretty
equal configurations for both versions of a mode so it’s useful to be able to
grab one from the other.
#+BEGIN_SRC elisp
(defun mm-mode-to-ts-mode (mode)
"Get the tree-sitter mode corresponding to MODE."
(declare (pure t) (side-effect-free t))
(intern (concat
(string-remove-suffix "-mode" (symbol-name mode))
"-ts-mode")))
#+END_SRC
*** Less-Verbose Mapc
One pattern that I need to do a lot is running a ~dolist~ over a list of items,
and performing some action for each of them. This could also be done with
~mapcar~. Since this is such a common task, I should probably make a macro to
make it just that little bit easier for me:
#+BEGIN_SRC elisp
(defmacro mm-for-each (sequence &rest body)
"Execute BODY for each element of SEQUENCE. The variable ‘x’ is automatically
set to the current subject of the iteration."
(declare (indent defun))
`(mapc (lambda (x) ,@body) ,sequence))
#+END_SRC
** Package Management
For package management I like to use ~straight.el~. Before setting that up
though it’s probably best to disable native-compilation warnings; we’ll get a
whole lot of those when ~straight.el~ is installing packages.
#+BEGIN_SRC elisp
(setq comp-async-report-warnings-errors nil)
#+END_SRC
After doing that, we can bootstrap ~straight.el~. The two options enabled at
the end are just configuring ~use-package~ to always use ~straight.el~ by
default, and to always ensure packages unless stated otherwise.
#+BEGIN_SRC elisp
(defvar bootstrap-version)
(let ((bootstrap-file
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
(bootstrap-version 6))
(unless (file-exists-p bootstrap-file)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el"
'silent 'inhibit-cookies)
(goto-char (point-max))
(eval-print-last-sexp)))
(load bootstrap-file nil 'nomessage))
(setq straight-use-package-by-default t
use-package-always-ensure t)
#+END_SRC
** Documentation
Documentation is absolutely essential. The ~helpful~ package gives us much
better documentation for things, so let’s use it. I’m mostly just overriding
the bindings for the standard ~describe-*~ functions.
#+BEGIN_SRC elisp
(use-package helpful
:bind (("C-h f" . #'helpful-callable)
("C-h v" . #'helpful-variable)
("C-h k" . #'helpful-key)
("C-h o" . #'helpful-symbol)
("C-c C-d" . #'helpful-at-point)))
#+END_SRC
** Key Bindings
*** Editing This Config
This configuration is one of the files I visit the most. Not just for making
large customizations, but also for simply editing the tab-width for a mode I
happen to be using. For that reason there should probably be a binding to get
here.
#+BEGIN_SRC elisp
(global-set-key
(kbd "C-c e")
(λ (interactive)
(find-file (expand-file-name "config.org" mm-config-directory))))
#+END_SRC
*** Evil Mode
The default Emacs keybindings are horrible and dangerous. Feel free to use them
if you want to develop genuine problems with your hands. For this reason,
~evil-mode~ bindings are the way to go. Also as I was writing this, Bram
Moolenaar, the creator of Vim died. RIP.
Here we setup bindings in the ~:bind~ section; the functions bound to that don’t
exist yet will be created shortly. You also need to set all these variables
/before/ ~evil-mode~ is loaded — it’s just how ~evil~ works I suppose. Finally
I like to have ~visual-line-mode~ enabled as I find it far more intuitive.
#+BEGIN_SRC elisp
(use-package evil
:bind (:map evil-normal-state-map
("€" . #'evil-end-of-visual-line)
("<leader>h" . #'evil-window-left)
("<leader>j" . #'evil-window-down)
("<leader>k" . #'evil-window-up)
("<leader>l" . #'evil-window-right)
("<leader>a" . #'mm--evil-align-regexp)
("<leader>s" . #'mm--evil-sort-lines)
("<leader>;" . #'mm--evil-comment-or-uncomment-region))
:init
;; We need to set these variables before loading ‘evil-mode’
(setq evil-want-Y-yank-to-eol t
evil-search-wrap nil
evil-v$-excludes-newline t
evil-respect-visual-line-mode t
evil-split-window-below t
evil-vsplit-window-right t
evil-want-fine-undo t
evil-undo-system 'undo-redo
evil-want-keybinding nil)
(evil-mode)
(global-visual-line-mode)
:config
(evil-set-leader nil (kbd "SPC")))
#+END_SRC
*** Evil Surround
This is probably one of the more useful Vim/Emacs extensions out there. It
let’s you easy add-, remove-, and change surrounding pairs such as quotation
marks and parenthesis from a /text object/. I like to use unicode single- and
double quotation marks — so we also want to add support for those.
#+BEGIN_SRC elisp
(use-package evil-surround
:after evil
:config
(global-evil-surround-mode))
#+END_SRC
Supporting custom pairs is a bit tricky since we need to define an evil /text
object/ to make them work properly. Also we add some custom Jinja pairs!
#+BEGIN_SRC elisp
(defmacro mm--evil-define-and-bind-quoted-text-object (name key start-regex end-regex)
(let ((inner-name (make-symbol (concat "evil-inner-" name)))
(outer-name (make-symbol (concat "evil-a-" name))))
`(progn
(evil-define-text-object ,inner-name (count &optional beg end type)
(evil-select-paren ,start-regex ,end-regex beg end type count nil))
(evil-define-text-object ,outer-name (count &optional beg end type)
(evil-select-paren ,start-regex ,end-regex beg end type count t))
(define-key evil-inner-text-objects-map ,key #',inner-name)
(define-key evil-outer-text-objects-map ,key #',outer-name))))
(mm--evil-define-and-bind-quoted-text-object "single-quote-open" "‘" "‘" "’")
(mm--evil-define-and-bind-quoted-text-object "single-quote-close" "’" "‘" "’")
(mm--evil-define-and-bind-quoted-text-object "double-quote-open" "“" "“" "”")
(mm--evil-define-and-bind-quoted-text-object "double-quote-close" "”" "“" "”")
(setq-default
evil-surround-pairs-alist
(append
'((?‘ . ("‘ " . " ’"))
(?’ . ("‘" . "’"))
(?“ . ("“ " . " ”"))
(?“ . ("“" . "”")))
evil-surround-pairs-alist))
(add-hook
'html-mode-hook
(λ (setq-local
evil-surround-pairs-alist
(append
'((?% . ("{% " . " %}"))
(?# . ("{# " . " #}"))
(?{ . ("{{ " . " }}")))
evil-surround-pairs-alist))
(mm--evil-define-and-bind-quoted-text-object "jinja-action" "%" "{%" "%}")
(mm--evil-define-and-bind-quoted-text-object "jinja-comment" "#" "{#" "#}")
(mm--evil-define-and-bind-quoted-text-object "jinja-code" "{" "{{" "}}")))
#+END_SRC
*** Evil Collection
This is a super-simple to setup package that adds ~evil~ bindings to many other
custom packages like ~magit~ and ~mu4e~.
#+BEGIN_SRC elisp
(use-package evil-collection
:after evil
:config
(evil-collection-init))
#+END_SRC
*** Aligning Text
I absolutely love aligning text with ~align-regexp~. It is in my opinion one of
the most underrated Emacs functions. Unfortunately, it aligns with tabs or
-spaces based on the setting of ~indent-tabs-mode~. Personally I am almost
always indenting with tabs, but I prefer to align with spaces. Luckily we can
use some advice to force the usage of spaces.
#+BEGIN_SRC elisp
(defadvice align-regexp (around align-regexp-with-spaces preactivate compile)
"Advice to force ‘align-regexp’ to always align with spaces, regardless of the
value of ‘indent-tabs-mode’."
(let ((indent-tabs-mode nil))
ad-do-it))
#+END_SRC
Now that it’s behaving properly, it should also be turned into an ~evil~
operator so it can be used with Vim motions.
#+BEGIN_SRC elisp
(evil-define-operator mm--evil-align-regexp (beg end regexp repeat)
"Wrapper around ‘align-regexp’ to allow for use as an ‘evil-mode’ operator."
(interactive (let ((range (evil-operator-range)))
(list (car range)
(cadr range)
(concat "\\(\\s-*\\)"
(read-string "Align regexp: "))
(y-or-n-p "Repeat? "))))
(align-regexp beg end regexp 1 1 repeat))
#+END_SRC
*** Sorting Text
Another very common operation is sorting text. So why not make an operator for
that too?
#+BEGIN_SRC elisp
(evil-define-operator mm--evil-sort-lines (beg end)
"Wrapper around ‘sort-lines’ to allow for use as an ‘evil-mode’ operator."
(sort-lines nil beg end))
#+END_SRC
*** Commenting Code
Commenting code is a super common task — so make it an operator!
#+BEGIN_SRC elisp
(evil-define-operator mm--evil-comment-or-uncomment-region (beg end)
"Wrapper around ‘comment-or-uncomment-region’ to allow for use as
an ‘evil-mode’ operator."
(comment-or-uncomment-region beg end))
#+END_SRC
** User Interface
The default Emacs UI is fucking atrocious — we need to make it better.
*** Shorter Prompts
For some reason emacs has both the ~y-or-n-p~ and ~yes-or-no-p~ functions. I do
not like having to spell out full words — /y/ or /n/ is good enough for me — so
let’s just redefine ~yes-or-no-p~.
#+BEGIN_SRC elisp
(fset #'yes-or-no-p #'y-or-n-p)
#+END_SRC
*** Disable Basic UI Modes
Emacs has a lot of UI modes that are enabled by default to make life easier for
the novice user. I am not the novice user and would rather these modes never
turned on ever again.
#+BEGIN_SRC elisp
(menu-bar-mode -1)
(scroll-bar-mode -1)
(tool-bar-mode -1)
(tooltip-mode -1)
#+END_SRC
*** Warnings
I am typically not a fan around being warned about things unless something is
actually breaking or going wrong.
In order, these options disable the following warnings:
1. Opening large files
2. Following symbolic links
3. Adding advice to functions
#+BEGIN_SRC elisp
(setq large-file-warning-threshold nil
vc-follow-symlinks t
ad-redefinition-action 'accept)
#+END_SRC
*** Visible Bell
Why not? I might disable this later.
#+BEGIN_SRC elisp
(setq visible-bell t)
#+END_SRC
*** Scrolling
By default, scrolling is really bad. Luckily we can improve it a lot; there’s
even a pixel-precision scrolling mode!
#+BEGIN_SRC elisp
(setq mouse-wheel-scroll-amount '(1 ((shift) . 1))
mouse-wheel-progressive-speed nil
mouse-wheel-follow-mouse t
scroll-step 1)
(pixel-scroll-precision-mode)
#+END_SRC
*** Auto Reverting Buffers
This is just good to have all of the time; you should never be looking at a file
whose state was changed by an external process, and not see those changes *instantly*.
#+BEGIN_SRC elisp
(setq global-auto-revert-non-file-buffers t)
(global-auto-revert-mode)
#+END_SRC
*** Highlight Matching Parenthesis
This is generally a good thing — especially when writing lisp code — but I don’t
want this /everywhere/.
#+BEGIN_SRC elisp
(defvar mm-highlight-matching-parenthesis-modes
'(prog-mode conf-mode)
"A list of modes for which the parenthesis that pairs up with the parenthesis
at point should be highlighted.")
(show-paren-mode -1)
(mm-for-each (mapcar #'mm-mode-to-hook mm-highlight-matching-parenthesis-modes)
(add-hook x #'show-paren-local-mode))
#+END_SRC
*** Line- and Column Numbers
It’s a bit tricky to remember, but ~line-number-mode~ and
~display-line-numbers-mode~ are very different. The former displays the current
line number in the modeline while the latter displays line numbers on the left
of the buffer. Personally I like to always display the current line number in
the modeline along with the column number — I find that it helps me wrap text
properly when I am not using ~auto-fill-mode~ — but I would prefer to only
display line numbers in certain modes.
#+BEGIN_SRC elisp
(line-number-mode)
(column-number-mode)
;; Enable and disable line numbers for some modes
(defvar mm-enable-line-numbers-modes
'(text-mode prog-mode conf-mode)
"A list of modes for which line numbers should be displayed.")
(defvar mm-disable-line-numbers-modes
'(org-mode)
"A list of modes for which line numbers shouldn’t be displayed.")
(mm-for-each (mapcar #'mm-mode-to-hook mm-enable-line-numbers-modes)
(add-hook x #'display-line-numbers-mode))
(mm-for-each (mapcar #'mm-mode-to-hook mm-disable-line-numbers-modes)
(add-hook x (λ (display-line-numbers-mode -1))))
#+END_SRC
*** Emacs Theme
The default theme is a light theme. I am not one of these weak-eyed retards
that cannot handle a light theme, but it is really, /really/ bad. Personally I
quite enjoy the /Sanity Inc./ themes, and they’re a lot less generic than the
Doom One theme that everyone and their grandmother uses.
Personally I am not sure if I prefer ~tomorrow-night~ or ~tomorrow-eighties~, so
why not make it random?
#+BEGIN_SRC elisp
(use-package color-theme-sanityinc-tomorrow
:config
(let ((n (random 2)))
(cond ((eq n 0) (load-theme 'sanityinc-tomorrow-night t))
((eq n 1) (load-theme 'sanityinc-tomorrow-eighties t)))))
#+END_SRC
*** TODO Fonts
My favorite monospace font has got to be /Iosevka/. It’s good looking, it’s far
more compact than the usual american-sized monospace fonts, and you can
customize just about every character from loads of variants. I have my own
custom compiled variant called /Iosevka Smooth/.
On the proportional side of things, I am not really sure what font to use.
/Vollkorn/ tends to be my go-to serif-font on the web, but I dunno how well it
translates to Emacs. I am also a bit fan of Ysabeau for sans-serif. I need to
play around with this.
#+BEGIN_SRC elisp
(defvar mm-monospace-font '("Iosevka Smooth" :weight light :height 162)
"The default monospace font to use. This is a list containing a font name,
font weight, and font height in that order.")
(defvar mm-proportional-font '("Ysabeau" :weight light :height 180)
"The default proportional font to use. This is a list containing a font name,
font weight, and font height in that order.")
#+END_SRC
Actually /setting/ the fonts is a bit tricky. I don’t really fully understand
why it works like this, but something with the whole server/client model of
Emacs is really fucking with this, so we need to add a hook to set the font for
every frame. We also can’t forget the frame that’s actually running this code.
#+BEGIN_SRC elisp
(defun mm-set-fonts ()
"Set the fonts specified by ‘mm-monospace-font’ and ‘mm-proportional-font’."
(interactive)
(let* ((mono-family (car mm-monospace-font))
(mono-props (cdr mm-monospace-font))
(prop-family (car mm-proportional-font))
(prop-props (cdr mm-proportional-font))
(mono-weight (plist-get mono-props :weight))
(mono-height (plist-get mono-props :height))
(prop-weight (plist-get prop-props :weight))
(prop-height (plist-get prop-props :height)))
(set-face-attribute 'default nil
:font mono-family
:weight mono-weight
:height mono-height)
(set-face-attribute 'fixed-pitch nil
:font mono-family
:weight mono-weight
:height mono-height)
(set-face-attribute 'variable-pitch nil
:font prop-family
:weight prop-weight
:height prop-height)))
(defun mm--configure-fonts (_)
"Configure font given initial non-daemon FRAME. Intended for
‘after-make-frame-functions’."
(mm-set-fonts)
(remove-hook 'after-make-frame-functions #'mm--configure-fonts))
(add-hook 'after-make-frame-functions #'mm--configure-fonts)
(mm-set-fonts)
#+END_SRC
*** Line Highlighting
This is just something I personally like having. It makes it very easy for me
to figure out where my point is at all times.
#+BEGIN_SRC elisp
(global-hl-line-mode)
#+END_SRC
** Completions
*** Vertico & Marginalia
Vertico is a great package for enhanced completions in the minibuffer. It’s
minimal and works great. We also want to configure the highlighting of the
current line to match up with what is used for ~hl-line-mode~. Vertico also
doesn’t offer a builtin function to go up a directory when typing out a path, so
that’s what the ~mm-minibuffer-backward-kill~ is for.
#+BEGIN_SRC elisp
(defun mm-minibuffer-backward-kill (arg)
"When minibuffer is completing a file name delete up to parent folder,
otherwise delete a word."
(interactive "p")
(if minibuffer-completing-file-name
(if (string-match-p "/." (minibuffer-contents))
(zap-up-to-char (- arg) ?/)
(delete-minibuffer-contents))
(backward-kill-word arg)))
(use-package vertico
:bind (:map vertico-map
("C-j" . vertico-next)
("C-k" . vertico-previous)
("C-l" . vertico-insert)
:map minibuffer-local-map
("C-h" . mm-minibuffer-backward-kill))
:custom
(vertico-cycle t)
:custom-face
(vertico-current ((t (:background
,(face-attribute 'hl-line :background nil t)))))
:init
(vertico-mode))
#+END_SRC
Marginalia is kind of a suppliment I like to use with Vertico. It adds, well…
/marginalia/ to the completions in the minibuffer. This includes things like
file sizes and permissions when looking at files, function docstrings when
looking at those, etc.
#+BEGIN_SRC elisp
(use-package marginalia
:after vertico
:init
(marginalia-mode))
#+END_SRC
*** Orderless
Orderless is another pretty neat package. It allows for better completion
candidate filtering. I personally prefer to use the ~orderless-prefixes~
completion style where entering the string “foo bar baz” will match the options
that have components beginning with /foo/, /bar/, and /baz/ in that order.
#+BEGIN_SRC elisp
(use-package orderless
:custom
(completion-styles '(orderless basic))
(orderless-matching-styles '(orderless-prefixes))
(completion-category-overrides '((file (styles basic partial-completion)))))
#+END_SRC
*** Company
Company is a package to give me actual completion popups; it’s super useful for
autocompleting code but has other uses too I guess.
#+BEGIN_SRC elisp
(use-package company
:hook ((conf-mode prog-mode) . company-mode)
:custom
(company-minimum-prefix-length 1)
(company-idle-delay 0.0))
#+END_SRC
** Programming
*** Indentation
Indentation in Emacs is a royal pain in the ass. Not only is there a
~tab-width~ variable and the ~indent-tabs-mode~ mode, but lots of modes just
have an extra ~tab-width~-esque variable for some reason? I try to fix this all
with a custom function that reads a list of mode-specific indentation settings.
#+BEGIN_SRC elisp
(setq-default tab-width 8
evil-shift-width 8
indent-tabs-mode t)
(defvar mm-indentation-settings
'((c-mode :width 8 :extra-vars (c-basic-offset))
(css-mode :extra-vars (css-basic-offset))
(emacs-lisp-mode :spaces t)
(lisp-mode :spaces t)
(org-mode :spaces t)
(python-mode :width 4 :spaces nil :extra-vars (python-indent-offset))
(rust-mode :width 4 :spaces nil)
(sgml-mode :width 4 :spaces nil :extra-vars (sgml-basic-offset))
(xml-mode :width 4 :spaces nil))
"A list of per-mode indentation settings. Each list contains a major-mode and
the 3 optional keyword arguments of :spaces, :width, and :extra-vars. When
setting the settings for a given major-mode, the settings will also be applied
for that modes tree-sitter variant.
If :spaces is non-nil, then indentation will be performed with spaces instead of
tabs characters.
If :width is non-nil, then it will override the modes given tab-width.
If :extra-vars is non-nill, then it shall be a list of additional mode-specific
variables that need to be assigned the desired indentation-width.")
(defun mm-set-indentation-settings ()
"Apply the indentation settings specified by ‘mm-indentation-settings’."
(interactive)
(mm-for-each mm-indentation-settings
(let* ((mode (car x))
(args (cdr x))
(width (or (plist-get args :width) (default-value 'tab-width)))
(spaces (or (plist-get args :spaces) (not (default-value 'indent-tabs-mode))))
(extra (plist-get args :extra-vars))
(callback
(λ (indent-tabs-mode (when spaces -1))
(setq-local tab-width width
evil-shift-width width)
(mm-for-each extra (setq x width)))))
(add-hook (mm-mode-to-hook mode) callback 95)
(let ((ts-mode (mm-mode-to-ts-mode mode)))
(when (boundp ts-mode)
(add-hook (mm-mode-to-hook ts-mode) callback 95))))))
(mm-set-indentation-settings)
#+END_SRC
*** Git Integration
I like to use Magit for my ~git~ integration. I do believe it is the best ~git~
client ever made for any editor ever. Anyone who disagrees has simply never
used Emacs before. The only command that really needs binding is
~magit-status~. All other commands I will end up executing from there with the
transient commands. I also install ~magit-todos~. It’s a super minimal package
that simply finds all the TODOs in a repository and displays them in the
~magit-status~ buffer so that I don’t forget them.
#+BEGIN_SRC elisp
(use-package magit
:bind ("C-c g" . magit-status)
:custom
(magit-display-buffer-function
#'magit-display-buffer-same-window-except-diff-v1))
(use-package magit-todos
:after magit
:init (magit-todos-mode))
#+END_SRC
*** Tree-Sitter
Emacs 29 brings native support for Tree-Sitter! This doesn’t just mean better-
and faster syntax highlighting, but also things such as structured editing. In
order to make use of Tree-Sitter the language parsers /do/ need to be installed,
so let’s do that. Tree-Sitter doesn’t check to see if the language grammars are
already installed unfortunately, but it’s easy enough to do manually.
#+BEGIN_SRC elisp
(setq treesit-language-source-alist
'((bash "https://github.com/tree-sitter/tree-sitter-bash")
(c "https://github.com/tree-sitter/tree-sitter-c")
(cpp "https://github.com/tree-sitter/tree-sitter-cpp")
(css "https://github.com/tree-sitter/tree-sitter-css")
(elisp "https://github.com/Wilfred/tree-sitter-elisp")
(go "https://github.com/tree-sitter/tree-sitter-go")
(html "https://github.com/tree-sitter/tree-sitter-html")
(json "https://github.com/tree-sitter/tree-sitter-json")
(make "https://github.com/alemuller/tree-sitter-make")
(markdown "https://github.com/ikatyang/tree-sitter-markdown")
(python "https://github.com/tree-sitter/tree-sitter-python")
(toml "https://github.com/tree-sitter/tree-sitter-toml")))
;; Automatically install missing grammars
(thread-last
(mapcar #'car treesit-language-source-alist)
(seq-remove #'treesit-language-available-p)
(mapc #'treesit-install-language-grammar))
#+END_SRC
*** Language Server Protocol
LSP is an absolute necessity when programming. Luckily ~lsp-mode~ has us
covered. There is Eglot which is now built in to Emacs 29, but it was giving me
some really weird issues so I won’t be using that for now. ~lsp-bridge~ also
looked promising but I didn’t like it too much. Also ~yasnippet~ is dead, so
why they won’t just move on from it I have no idea. I’ll just disable snippets.
#+BEGIN_SRC elisp
(use-package lsp-mode
:custom
(lsp-enable-snippet nil)
:init
(setq lsp-keymap-prefix "C-c l")
:hook ((rust-ts-mode . lsp-deferred))
:commands (lsp lsp-deferred))
#+END_SRC
** Extra Modes
Some modes aren’t installed by default with Emacs, so let’s fetch them
#+BEGIN_SRC elisp
(use-package markdown-mode)
(use-package git-modes)
#+END_SRC
** Customization Settings
Emacs has a /customization variable/ that contains various configuration-related
settings that are set by different commands, as well as the customization UI. I
would rather have these saved in a temporary file since any customizations I
make that I would like to have be persistent will be explicitly written into
this file.
#+BEGIN_SRC elisp
(setq custom-file
(expand-file-name
(format "emacs-custom-%s.el" (user-uid))
temporary-file-directory))
(load custom-file t)
#+END_SRC
** Backup Files
It’s always good to have backups. I would know — I’ve wiped both =~= and
=~/.config= before! Despite the name, ~version-control~ actually just adds
version numbers to the backup names — it doesn’t start using a VCS.
#+BEGIN_SRC elisp
(setq delete-old-versions t
version-control t
kept-new-versions 2
kept-old-versions 6)
#+END_SRC
** Mode Specific Settings
*** Org-Mode
I really enjoy using ~org-indent-mode~. It indents the contents of the
org-buffer to keep everything looking nice and structured.
#+BEGIN_SRC elisp
(add-hook 'org-mode-hook #'org-indent-mode)
#+END_SRC
*** Auto-Fill-Mode
I do like to use this mode, especially when writing. I also want it when coding
/sometimes/, but not always. Overall it’s a pretty useful mode — but I am super
mixed on when I do and -don’t want it. I always want it in ~org-mode~ though.
#+BEGIN_SRC elisp
(setq-default fill-column 80)
(add-hook 'org-mode-hook #'auto-fill-mode)
#+END_SRC
|