Update 4 drones
[~bandali/configs] / init.el
1 ;;; init.el --- bandali's emacs configuration -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2018-2020 Amin Bandali <bandali@gnu.org>
4
5 ;; This program is free software: you can redistribute it and/or modify
6 ;; it under the terms of the GNU General Public License as published by
7 ;; the Free Software Foundation, either version 3 of the License, or
8 ;; (at your option) any later version.
9
10 ;; This program is distributed in the hope that it will be useful,
11 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ;; GNU General Public License for more details.
14
15 ;; You should have received a copy of the GNU General Public License
16 ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
17
18 ;;; Commentary:
19
20 ;; GNU Emacs configuration of Amin Bandali, computer scientist,
21 ;; Free Software activist, and GNU maintainer & webmaster. Packages
22 ;; are installed through using Borg for a fully reproducible setup.
23
24 ;; Over the years, I've taken inspiration from configurations of many
25 ;; great people. Some that I can remember off the top of my head are:
26 ;;
27 ;; - https://github.com/dieggsy/dotfiles
28 ;; - https://github.com/dakra/dmacs
29 ;; - http://pages.sachachua.com/.emacs.d/Sacha.html
30 ;; - https://github.com/dakrone/eos
31 ;; - http://doc.rix.si/cce/cce.html
32 ;; - https://github.com/jwiegley/dot-emacs
33 ;; - https://github.com/wasamasa/dotemacs
34 ;; - https://github.com/hlissner/doom-emacs
35
36 ;;; Code:
37
38 ;;; Emacs initialization
39
40 (defvar b/before-user-init-time (current-time)
41 "Value of `current-time' when Emacs begins loading `user-init-file'.")
42 (defvar b/emacs-initialized nil
43 "Whether Emacs has been initialized.")
44 (defvar b/exwm-p (string= (system-name) "chaman")
45 "Whether or not we will be using `exwm'.")
46
47 (when (not (bound-and-true-p b/emacs-initialized))
48 (message "Loading Emacs...done (%.3fs)"
49 (float-time (time-subtract b/before-user-init-time
50 before-init-time))))
51
52 ;; temporarily increase `gc-cons-threshhold' and `gc-cons-percentage'
53 ;; during startup to reduce garbage collection frequency. clearing
54 ;; `file-name-handler-alist' seems to help reduce startup time too.
55 (defvar b/gc-cons-threshold gc-cons-threshold)
56 (defvar b/gc-cons-percentage gc-cons-percentage)
57 (defvar b/file-name-handler-alist file-name-handler-alist)
58 (setq gc-cons-threshold (* 30 1024 1024) ; 30 MiB
59 gc-cons-percentage 0.6
60 file-name-handler-alist nil
61 ;; sidesteps a bug when profiling with esup
62 esup-child-profile-require-level 0)
63
64 ;; set them back to their defaults once we're done initializing
65 (defun b/post-init ()
66 "My post-initialize function, run after loading `user-init-file'."
67 (setq b/emacs-initialized t
68 gc-cons-threshold b/gc-cons-threshold
69 gc-cons-percentage b/gc-cons-percentage
70 file-name-handler-alist b/file-name-handler-alist)
71 (when b/exwm-p
72 (with-eval-after-load 'exwm-workspace
73 (setq-default
74 mode-line-format
75 (append
76 mode-line-format
77 '((:eval
78 (format
79 "[%s]" (number-to-string
80 exwm-workspace-current-index)))))))))
81 (add-hook 'after-init-hook #'b/post-init)
82
83 ;; increase number of lines kept in *Messages* log
84 (setq message-log-max 20000)
85
86 ;; optionally, uncomment to supress some byte-compiler warnings
87 ;; (see C-h v byte-compile-warnings RET for more info)
88 ;; (setq byte-compile-warnings
89 ;; '(not free-vars unresolved noruntime lexical make-local))
90
91 \f
92 ;;; whoami
93
94 (setq user-full-name "Amin Bandali"
95 user-mail-address "bandali@gnu.org")
96
97 \f
98 ;;; comment macro
99
100 ;; useful for commenting out multiple sexps at a time
101 (defmacro comment (&rest _)
102 "Comment out one or more s-expressions."
103 (declare (indent defun))
104 nil)
105
106 \f
107 ;;; Package management
108
109 (progn ; `borg'
110 (add-to-list 'load-path
111 (expand-file-name "lib/borg" user-emacs-directory))
112 (require 'borg)
113 (borg-initialize)
114 (setq borg-rewrite-urls-alist
115 '(("git@github.com:" . "https://github.com/")
116 ("git@gitlab.com:" . "https://gitlab.com/"))))
117
118 ;; use-package
119 (if nil ; set to t when need to debug init
120 (progn
121 (setq use-package-verbose t
122 use-package-expand-minimally nil
123 use-package-compute-statistics t
124 debug-on-error t)
125 (require 'use-package))
126 (setq use-package-verbose nil
127 use-package-expand-minimally t))
128
129 (setq use-package-always-defer t)
130 (require 'bind-key)
131
132 \f
133 ;;; Initial setup
134
135 ;; keep ~/.emacs.d clean
136 (use-package no-littering
137 :demand
138 :config
139 (defalias 'b/etc 'no-littering-expand-etc-file-name)
140 (defalias 'b/var 'no-littering-expand-var-file-name))
141
142 (use-package auto-compile
143 :demand
144 :config
145 (auto-compile-on-load-mode)
146 (auto-compile-on-save-mode)
147 (setq auto-compile-display-buffer nil)
148 (setq auto-compile-mode-line-counter t)
149 (setq auto-compile-source-recreate-deletes-dest t)
150 (setq auto-compile-toggle-deletes-nonlib-dest t)
151 (setq auto-compile-update-autoloads t))
152
153 ;; separate custom file (don't want it mixing with init.el)
154 (use-package custom
155 :no-require
156 :config
157 (setq custom-file (b/etc "custom.el"))
158 (when (file-exists-p custom-file)
159 (load custom-file))
160 ;; while at it, treat themes as safe
161 (setf custom-safe-themes t)
162 ;; only one custom theme at a time
163 (comment
164 (defadvice load-theme (before clear-previous-themes activate)
165 "Clear existing theme settings instead of layering them"
166 (mapc #'disable-theme custom-enabled-themes))))
167
168 ;; load the secrets file if it exists, otherwise show a warning
169 (comment
170 (with-demoted-errors
171 (load (b/etc "secrets"))))
172
173 ;; start up emacs server. see
174 ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server
175 (use-package server
176 :defer 0.5
177 :config
178 (declare-function server-edit "server")
179 (bind-key "C-c F D" 'server-edit)
180 (declare-function server-running-p "server")
181 (or (server-running-p) (server-mode)))
182
183 \f
184 ;;; Useful utilities
185
186 (defmacro b/setq-every (value &rest vars)
187 "Set all the variables from VARS to value VALUE."
188 (declare (indent defun) (debug t))
189 `(progn ,@(mapcar (lambda (x) (list 'setq x value)) vars)))
190
191 (defun b/start-process (program &rest args)
192 "Same as `start-process', but doesn't bother about name and buffer."
193 (let ((process-name (concat program "_process"))
194 (buffer-name (generate-new-buffer-name
195 (concat program "_output"))))
196 (apply #'start-process
197 process-name buffer-name program args)))
198
199 (defun b/dired-start-process (program &optional args)
200 "Open current file with a PROGRAM."
201 ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can
202 ;; be nil, so remove it).
203 (declare-function dired-get-file-for-visit "dired")
204 (apply #'b/start-process
205 program
206 (remove nil (list args (dired-get-file-for-visit)))))
207
208 (defun b/add-elisp-section ()
209 (interactive)
210 (insert "\n")
211 (forward-line -1)
212 (insert "\n\f\n;;; "))
213
214 ;; (defvar b/fill-column 47
215 ;; "My custom `fill-column'.")
216
217 (defconst b/asterism "* * *")
218
219 (defun b/insert-asterism ()
220 "Insert a centred asterism."
221 (interactive)
222 (insert
223 (concat
224 "\n\n"
225 (make-string (floor (/ (- fill-column (length b/asterism)) 2))
226 ?\s)
227 b/asterism
228 "\n\n")))
229
230 (defun b/no-mouse-autoselect-window ()
231 "Conveniently disable `focus-follows-mouse'.
232 For disabling the behaviour for certain buffers and/or modes."
233 (make-local-variable 'mouse-autoselect-window)
234 (setq mouse-autoselect-window nil))
235
236 (defun b/kill-current-buffer ()
237 "Kill the current buffer."
238 ;; also see https://redd.it/64xb3q
239 (interactive)
240 (kill-buffer (current-buffer)))
241
242 (defun b/move-indentation-or-beginning-of-line (arg)
243 "Move to the indentation or to the beginning of line."
244 (interactive "^p")
245 ;; (if (bolp)
246 ;; (back-to-indentation)
247 ;; (move-beginning-of-line arg))
248 (if (= (point)
249 (progn (back-to-indentation)
250 (point)))
251 (move-beginning-of-line arg)))
252
253 (defun b/join-line-top ()
254 "Like `join-line', but join next line to the current line."
255 (interactive)
256 (join-line 1))
257
258 \f
259 ;;; Defaults
260
261 ;;;; C-level customizations
262
263 (setq
264 ;; minibuffer
265 enable-recursive-minibuffers t
266 resize-mini-windows t
267 ;; more useful frame titles
268 frame-title-format '("" invocation-name " - "
269 (:eval
270 (if (buffer-file-name)
271 (abbreviate-file-name (buffer-file-name))
272 "%b")))
273 ;; i don't feel like jumping out of my chair every now and again; so
274 ;; don't BEEP! at me, emacs
275 ring-bell-function 'ignore
276 ;; better scrolling
277 ;; scroll-margin 1
278 ;; scroll-conservatively 10000
279 scroll-step 1
280 scroll-conservatively 10
281 scroll-preserve-screen-position 1
282 ;; focus follows mouse
283 mouse-autoselect-window t)
284
285 (setq-default
286 ;; always use space for indentation
287 indent-tabs-mode nil
288 tab-width 4
289 ;; cursor shape
290 cursor-type t)
291
292 ;; unicode support
293 (comment
294 (dolist (ft (fontset-list))
295 (set-fontset-font
296 ft
297 'unicode
298 (font-spec :name "Source Code Pro" :size 14))
299 (set-fontset-font
300 ft
301 'unicode
302 (font-spec :name "DejaVu Sans Mono")
303 nil
304 'append)
305 ;; (set-fontset-font
306 ;; ft
307 ;; 'unicode
308 ;; (font-spec
309 ;; :name "Symbola monospacified for DejaVu Sans Mono")
310 ;; nil
311 ;; 'append)
312 ;; (set-fontset-font
313 ;; ft
314 ;; #x2115 ; ℕ
315 ;; (font-spec :name "DejaVu Sans Mono")
316 ;; nil
317 ;; 'append)
318 (set-fontset-font
319 ft
320 (cons ?Α ?ω)
321 (font-spec :name "DejaVu Sans Mono" :size 14)
322 nil
323 'prepend)))
324
325 ;;;; Elisp-level customizations
326
327 (use-package startup
328 :no-require
329 :demand
330 :config
331 ;; don't need to see the startup echo area message
332 (advice-add #'display-startup-echo-area-message :override #'ignore)
333 :custom
334 ;; i want *scratch* as my startup buffer
335 (initial-buffer-choice t)
336 ;; i don't need the default hint
337 (initial-scratch-message nil)
338 ;; use customizable text-mode as major mode for *scratch*
339 ;; (initial-major-mode 'text-mode)
340 ;; inhibit buffer list when more than 2 files are loaded
341 (inhibit-startup-buffer-menu t)
342 ;; don't need to see the startup screen or echo area message
343 (inhibit-startup-screen t)
344 (inhibit-startup-echo-area-message user-login-name))
345
346 (use-package files
347 :no-require
348 :demand
349 :custom
350 ;; backups (C-h v make-backup-files RET)
351 (backup-by-copying t)
352 (version-control t)
353 (delete-old-versions t)
354
355 ;; auto-save
356 (auto-save-file-name-transforms
357 `((".*" ,(b/var "auto-save/") t)))
358
359 ;; insert newline at the end of files
360 (require-final-newline t)
361
362 ;; open read-only file buffers in view-mode
363 ;; (enables niceties like `q' for quit)
364 (view-read-only t))
365
366 ;; disable disabled commands
367 (setq disabled-command-function nil)
368
369 ;; lazy-person-friendly yes/no prompts
370 (defalias 'yes-or-no-p #'y-or-n-p)
371
372 ;; enable automatic reloading of changed buffers and files
373 (use-package autorevert
374 :demand
375 :config
376 (global-auto-revert-mode 1)
377 :custom
378 (auto-revert-verbose nil)
379 (global-auto-revert-non-file-buffers nil))
380
381 ;; time and battery in mode-line
382 (use-package time
383 :demand
384 :config
385 (display-time-mode)
386 :custom
387 (display-time-default-load-average nil)
388 (display-time-format " %a %b %-e %-l:%M%P")
389 (display-time-mail-icon '(image :type xpm :file "gnus/gnus-pointer.xpm" :ascent center))
390 (display-time-use-mail-icon t))
391
392 (use-package battery
393 :demand
394 :config
395 (display-battery-mode)
396 :custom
397 (battery-mode-line-format "%p%% %t"))
398
399 (use-package fringe
400 :demand
401 :config
402 ;; smaller fringe
403 ;; (fringe-mode '(3 . 1))
404 (fringe-mode nil))
405
406 (use-package winner
407 :demand
408 :config
409 ;; enable winner-mode (C-h f winner-mode RET)
410 (winner-mode 1))
411
412 (use-package compile
413 :config
414 ;; don't display *compilation* buffer on success. based on
415 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
416 ;; instead of the now obsolete `flet'.
417 (defun b/compilation-finish-function (buffer outstr)
418 (unless (string-match "finished" outstr)
419 (switch-to-buffer-other-window buffer))
420 t)
421
422 (setq compilation-finish-functions #'b/compilation-finish-function)
423
424 (require 'cl-macs)
425
426 (defadvice compilation-start
427 (around inhibit-display
428 (command &optional mode name-function highlight-regexp))
429 (if (not (string-match "^\\(find\\|grep\\)" command))
430 (cl-letf (((symbol-function 'display-buffer) #'ignore))
431 (save-window-excursion ad-do-it))
432 ad-do-it))
433 (ad-activate 'compilation-start))
434
435 (use-package isearch
436 :custom
437 ;; allow scrolling in Isearch
438 (isearch-allow-scroll t)
439 ;; search for non-ASCII characters: i’d like non-ASCII characters such
440 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
441 ;; counterpart. shoutout to
442 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
443 (search-default-mode #'char-fold-to-regexp))
444
445 ;; uncomment to extend the above behaviour to query-replace
446 (comment
447 (use-package replace
448 :custom
449 (replace-char-fold t)))
450
451 (use-package vc
452 :bind ("C-x v C-=" . vc-ediff))
453
454 (use-package vc-git
455 :after vc
456 :custom
457 (vc-git-print-log-follow t))
458
459 (use-package ediff
460 :config (add-hook 'ediff-after-quit-hook-internal 'winner-undo)
461 :custom ((ediff-window-setup-function 'ediff-setup-windows-plain)
462 (ediff-split-window-function 'split-window-horizontally)))
463
464 (use-package face-remap
465 :custom
466 ;; gentler font resizing
467 (text-scale-mode-step 1.05))
468
469 (use-package mwheel
470 :defer 0.4
471 :config
472 (setq mouse-wheel-scroll-amount '(1 ((shift) . 1)) ; one line at a time
473 mouse-wheel-progressive-speed nil ; don't accelerate scrolling
474 mouse-wheel-follow-mouse t)) ; scroll window under mouse
475
476 (use-package pixel-scroll
477 :defer 0.4
478 :config (pixel-scroll-mode 1))
479
480 (use-package epg-config
481 :config
482 ;; ask for GPG passphrase in minibuffer
483 ;; this will fail if gpg>=2.1 is not available
484 (setq epg-pinentry-mode 'loopback)
485 :custom
486 (epg-gpg-program (executable-find "gpg")))
487
488 (use-package epg
489 :after epg-config)
490
491 (use-package pinentry
492 :disabled
493 :demand
494 :after (epa epg server)
495 :config
496 ;; workaround for systemd-based distros:
497 ;; (setq pinentry--socket-dir server-socket-dir)
498 (pinentry-start))
499
500 (use-package auth-source
501 :custom
502 (auth-sources '("~/.authinfo.gpg"))
503 (authinfo-hidden (regexp-opt '("password" "client-secret" "token"))))
504
505 \f
506 ;;; General bindings
507
508 (bind-keys
509 ("C-a" . b/move-indentation-or-beginning-of-line)
510 ("C-c a i" . ielm)
511
512 ("C-c e b" . eval-buffer)
513 ("C-c e e" . eval-last-sexp)
514 ("C-c e p" . pp-macroexpand-last-sexp)
515 ("C-c e r" . eval-region)
516
517 ("C-c e i" . emacs-init-time)
518 ("C-c e u" . emacs-uptime)
519 ("C-c e v" . emacs-version)
520
521 ("C-c f ." . find-file)
522 ("C-c f d" . find-name-dired)
523 ("C-c f l" . find-library)
524
525 ("C-c F m" . make-frame-command)
526 ("C-c F d" . delete-frame)
527
528 ("C-S-h C" . describe-char)
529 ("C-S-h F" . describe-face)
530
531 ("C-S-j" . b/join-line-top)
532
533 ("C-c x" . execute-extended-command)
534
535 ("C-x k" . b/kill-current-buffer)
536 ("C-x K" . kill-buffer)
537 ("C-x s" . save-buffer)
538 ("C-x S" . save-some-buffers)
539
540 :map emacs-lisp-mode-map
541 ("<C-return>" . b/add-elisp-section))
542
543 (when (display-graphic-p)
544 (unbind-key "C-z" global-map))
545
546 (bind-keys
547 ;; for back and forward mouse keys
548 ("<XF86Back>" . previous-buffer)
549 ("<mouse-8>" . previous-buffer)
550 ;; ("<drag-mouse-8>" . previous-buffer)
551 ("<XF86Forward>" . next-buffer)
552 ("<mouse-9>" . next-buffer)
553 ;; ("<drag-mouse-9>" . next-buffer)
554 ;; ("<drag-mouse-2>" . kill-this-buffer)
555 ;; ("<drag-mouse-3>" . switch-to-buffer)
556 )
557
558 \f
559 ;;; Essential packages
560
561 (add-to-list
562 'load-path
563 (expand-file-name
564 (convert-standard-filename "lisp") user-emacs-directory))
565
566 (when b/exwm-p
567 (require 'bandali-exwm))
568
569 (require 'bandali-org)
570
571 ;; *the* right way to do git
572 (use-package magit
573 :bind (("C-x g" . magit-status)
574 ("C-c g g" . magit-status)
575 ("C-c g b" . magit-blame-addition)
576 ("C-c g l" . magit-log-buffer-file))
577 :config
578 (declare-function magit-add-section-hook "magit-section"
579 (hook function &optional at append local))
580 (magit-add-section-hook 'magit-status-sections-hook
581 'magit-insert-modules
582 'magit-insert-stashes
583 'append)
584 ;; (magit-add-section-hook 'magit-status-sections-hook
585 ;; 'magit-insert-ignored-files
586 ;; 'magit-insert-untracked-files
587 ;; 'append)
588 (setq magit-repository-directories '(("~/.emacs.d/" . 0)
589 ("~/src/git/" . 2)))
590 (nconc magit-section-initial-visibility-alist
591 '(([unpulled status] . show)
592 ([unpushed status] . show)))
593 (declare-function magit-display-buffer-fullframe-status-v1 "magit-mode" (buffer))
594 :custom
595 (magit-diff-refine-hunk t)
596 (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1)
597 ;; (magit-completing-read-function 'magit-ido-completing-read)
598 :custom-face (magit-diff-file-heading ((t (:weight normal)))))
599
600 ;; recently opened files
601 (use-package recentf
602 :defer 0.2
603 ;; :config
604 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
605 :config
606 (recentf-mode)
607 :custom
608 (recentf-max-saved-items 2000))
609
610 ;; needed for history for counsel
611 (use-package amx
612 :defer 0.3
613 :config
614 (amx-mode))
615
616 ;; (require 'bandali-ido)
617 (require 'bandali-ivy)
618
619 (require 'bandali-eshell)
620
621 (require 'bandali-ibuffer)
622
623 (use-package outline
624 :disabled
625 :hook (prog-mode . outline-minor-mode)
626 :bind
627 (:map
628 outline-minor-mode-map
629 ("<s-tab>" . outline-toggle-children)
630 ("M-p" . outline-previous-visible-heading)
631 ("M-n" . outline-next-visible-heading)
632 :prefix-map b/outline-prefix-map
633 :prefix "s-O"
634 ("TAB" . outline-toggle-children)
635 ("a" . outline-hide-body)
636 ("H" . outline-hide-body)
637 ("S" . outline-show-all)
638 ("h" . outline-hide-subtree)
639 ("s" . outline-show-subtree)))
640
641 (use-package ls-lisp
642 :custom (ls-lisp-dirs-first t))
643
644 (require 'bandali-dired)
645
646 (use-package help
647 :config
648 (temp-buffer-resize-mode)
649 (setq help-window-select t))
650
651 (use-package tramp
652 :config
653 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
654 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
655 (add-to-list 'tramp-default-proxies-alist
656 (list (regexp-quote (system-name)) nil nil)))
657
658 (use-package doc-view
659 :bind (:map doc-view-mode-map
660 ("M-RET" . image-previous-line)))
661
662 ;; Email (with Gnus, message, and EBDB)
663 (require 'bandali-gnus)
664 (use-package sendmail
665 :config
666 (setq sendmail-program (executable-find "msmtp")
667 ;; message-sendmail-extra-arguments '("-v" "-d")
668 mail-specify-envelope-from t
669 mail-envelope-from 'header))
670 (require 'bandali-message)
671 (require 'bandali-ebdb)
672
673 ;; IRC (with ERC and ZNC)
674 (require 'bandali-erc)
675
676 (use-package scpaste
677 :config
678 (setq scpaste-http-destination "https://p.bndl.org"
679 scpaste-scp-destination "p:~"))
680
681 \f
682 ;;; Editing
683
684 ;; highlight uncommitted changes in the left fringe
685 (use-package diff-hl
686 :defer 0.6
687 :config
688 (setq diff-hl-draw-borders nil)
689 (global-diff-hl-mode)
690 :hook
691 ((magit-pre-refresh . diff-hl-magit-pre-refresh)
692 (magit-post-refresh . diff-hl-magit-post-refresh)))
693
694 ;; display Lisp objects at point in the echo area
695 (use-package eldoc
696 :when (version< "25" emacs-version)
697 :config (global-eldoc-mode))
698
699 ;; highlight matching parens
700 (use-package paren
701 :demand
702 :config (show-paren-mode))
703
704 (use-package elec-pair
705 :demand
706 :config (electric-pair-mode))
707
708 (use-package simple
709 :config (column-number-mode)
710 :custom
711 ;; Save what I copy into clipboard from other applications into Emacs'
712 ;; kill-ring, which would allow me to still be able to easily access
713 ;; it in case I kill (cut or copy) something else inside Emacs before
714 ;; yanking (pasting) what I'd originally intended to.
715 (save-interprogram-paste-before-kill t))
716
717 ;; save minibuffer history
718 (use-package savehist
719 :demand
720 :config
721 (savehist-mode)
722 (add-to-list 'savehist-additional-variables 'kill-ring))
723
724 ;; automatically save place in files
725 (use-package saveplace
726 :when (version< "25" emacs-version)
727 :config (save-place-mode))
728
729 (use-package prog-mode
730 :config (global-prettify-symbols-mode)
731 (defun indicate-buffer-boundaries-left ()
732 (setq indicate-buffer-boundaries 'left))
733 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
734
735 (use-package text-mode
736 :bind (:map text-mode-map ("C-*" . b/insert-asterism))
737 :hook ((text-mode . indicate-buffer-boundaries-left)
738 (text-mode . flyspell-mode)))
739
740 (use-package conf-mode
741 :mode "\\.*rc$")
742
743 (use-package sh-script
744 :mode ("\\.bashrc$" . sh-mode))
745
746 (use-package company
747 :disabled
748 :bind
749 (:map company-active-map
750 ([tab] . company-complete-common-or-cycle)
751 ([escape] . company-abort)
752 ("C-p" . company-select-previous-or-abort)
753 ("C-n" . company-select-next-or-abort))
754 :custom
755 (company-minimum-prefix-length 1)
756 (company-selection-wrap-around t)
757 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
758 (company-dabbrev-downcase nil)
759 (company-dabbrev-ignore-case nil)
760 ;; :config
761 ;; (global-company-mode t)
762 )
763
764 (use-package flycheck
765 :disabled
766 :defer 0.6
767 :hook (prog-mode . flycheck-mode)
768 :bind
769 (:map flycheck-mode-map
770 ("M-P" . flycheck-previous-error)
771 ("M-N" . flycheck-next-error))
772 :config
773 ;; Use the load-path from running Emacs when checking elisp files
774 (setq flycheck-emacs-lisp-load-path 'inherit)
775
776 ;; Only flycheck when I actually save the buffer
777 (setq flycheck-check-syntax-automatically '(mode-enabled save))
778 :custom (flycheck-mode-line-prefix "flyc"))
779
780 ;; (use-package flyspell)
781
782 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
783 (use-package ispell
784 :disabled
785 :defer 0.6
786 :config
787 ;; ’ can be part of a word
788 (setq ispell-local-dictionary-alist
789 `((nil "[[:alpha:]]" "[^[:alpha:]]"
790 "['\x2019]" nil ("-B") nil utf-8))
791 ispell-program-name (executable-find "hunspell"))
792 ;; don't send ’ to the subprocess
793 (defun endless/replace-apostrophe (args)
794 (cons (replace-regexp-in-string
795 "’" "'" (car args))
796 (cdr args)))
797 (advice-add #'ispell-send-string :filter-args
798 #'endless/replace-apostrophe)
799
800 ;; convert ' back to ’ from the subprocess
801 (defun endless/replace-quote (args)
802 (if (not (derived-mode-p 'org-mode))
803 args
804 (cons (replace-regexp-in-string
805 "'" "’" (car args))
806 (cdr args))))
807 (advice-add #'ispell-parse-output :filter-args
808 #'endless/replace-quote))
809
810 (use-package abbrev
811 :hook (text-mode . abbrev-mode))
812
813 \f
814 ;;; Programming modes
815
816 (use-package lisp-mode
817 :config
818 (defun indent-spaces-mode ()
819 (setq indent-tabs-mode nil))
820 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
821
822 (use-package alloy-mode
823 :mode "\\.\\(als\\|dsh\\)\\'"
824 :config
825 (setq alloy-basic-offset 2)
826 ;; (defun b/alloy-simple-indent (start end)
827 ;; (interactive "r")
828 ;; ;; (if (region-active-p)
829 ;; ;; (indent-rigidly start end alloy-basic-offset)
830 ;; ;; (if (bolp)
831 ;; ;; (indent-rigidly (line-beginning-position)
832 ;; ;; (line-end-position)
833 ;; ;; alloy-basic-offset)))
834 ;; (indent-to (+ (current-column) alloy-basic-offset)))
835 :bind (:map alloy-mode-map
836 ("RET" . electric-newline-and-maybe-indent)
837 ;; ("TAB" . b/alloy-simple-indent)
838 ("TAB" . indent-for-tab-command))
839 :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil))))
840
841 (use-package lean-mode
842 :disabled
843 :defer 0.4
844 :init (eval-when-compile (defvar lean-mode-map))
845 :bind (:map lean-mode-map
846 ("S-SPC" . company-complete))
847 :config
848 (require 'lean-input)
849 (setq default-input-method "Lean"
850 lean-input-tweak-all '(lean-input-compose
851 (lean-input-prepend "/")
852 (lean-input-nonempty))
853 lean-input-user-translations '(("/" "/")))
854 (lean-input-setup))
855
856 (use-package sgml-mode
857 :config
858 (setq sgml-basic-offset 0))
859
860 (use-package css-mode
861 :config
862 (setq css-indent-offset 2))
863
864 (use-package emmet-mode
865 :after (:any mhtml-mode css-mode sgml-mode)
866 :bind* (("C-)" . emmet-next-edit-point)
867 ("C-(" . emmet-prev-edit-point))
868 :config
869 (unbind-key "C-j" emmet-mode-keymap)
870 (setq emmet-move-cursor-between-quotes t)
871 :hook (css-mode html-mode sgml-mode))
872
873 (use-package geiser
874 :disabled)
875
876 (use-package geiser-guile
877 :disabled
878 :config
879 (setq geiser-guile-load-path "~/src/git/guix"))
880
881 (use-package guix
882 :disabled)
883
884 (use-package go-mode
885 :disabled)
886
887 (use-package po-mode
888 :disabled
889 :hook
890 (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit))))
891
892 (use-package auctex
893 :disabled
894 :custom
895 (font-latex-fontify-sectioning 'color))
896
897 (use-package tex-mode
898 :config
899 (cl-delete-if
900 (lambda (p) (string-match "^---?" (car p)))
901 tex--prettify-symbols-alist)
902 :hook ((tex-mode . auto-fill-mode)
903 (tex-mode . flyspell-mode)))
904
905 ;; (use-package george-mode
906 ;; :straight (:host nil :repo "https://git.shemshak.org/amin/george-mode")
907 ;; :mode "\\.grg\\'")
908
909 \f
910 ;;; Theme
911
912 (comment
913 (add-to-list 'custom-theme-load-path
914 (expand-file-name
915 (convert-standard-filename "lisp") user-emacs-directory))
916 (load-theme 'tangomod t)
917
918 (use-package smart-mode-line
919 :commands (sml/apply-theme)
920 :demand
921 :config
922 ;; thanks, but no thnaks; don't make fixed-width fills.
923 (defun sml/fill-for-buffer-identification () "")
924 (setq sml/theme 'tangomod)
925 (sml/setup)
926 (smart-mode-line-enable))
927
928 (use-package doom-modeline
929 :disabled
930 :demand
931 :hook (after-init . doom-modeline-init)
932 :custom
933 (doom-modeline-buffer-file-name-style 'relative-to-project))
934
935 (use-package doom-themes)
936
937 (use-package moody
938 :disabled
939 :demand
940 :config
941 (setq x-underline-at-descent-line t)
942 (let ((line (face-attribute 'mode-line :underline)))
943 (set-face-attribute 'mode-line nil :overline line)
944 (set-face-attribute 'mode-line-inactive nil :overline line)
945 (set-face-attribute 'mode-line-inactive nil :underline line)
946 (set-face-attribute 'mode-line nil :box nil)
947 (set-face-attribute 'mode-line-inactive nil :box nil)
948 (set-face-attribute 'mode-line-inactive nil :background "#e1e1e1")) ; d3d7cf
949 (moody-replace-mode-line-buffer-identification)
950 (moody-replace-vc-mode))
951
952 (use-package mini-modeline
953 :disabled
954 :demand
955 :config (mini-modeline-mode))
956
957 (defvar b/org-mode-font-lock-keywords
958 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
959 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
960 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
961 (4 '(:foreground "#c5c8c6") t))) ; title
962 "For use with the `doom-tomorrow-night' theme.")
963
964 (defun b/lights-on ()
965 "Enable my favourite light theme."
966 (interactive)
967 (mapc #'disable-theme custom-enabled-themes)
968 (load-theme 'tangomod t)
969 (when (featurep 'smart-mode-line)
970 (sml/apply-theme 'tangomod))
971 (font-lock-remove-keywords
972 'org-mode b/org-mode-font-lock-keywords)
973 (when (featurep 'erc-hl-nicks)
974 (erc-hl-nicks-reset-face-table))
975 (when (featurep 'exwm-systemtray)
976 (exwm-systemtray--refresh)))
977
978 (defun b/lights-off ()
979 "Go dark."
980 (interactive)
981 (mapc #'disable-theme custom-enabled-themes)
982 (load-theme 'doom-one t)
983 (when (featurep 'smart-mode-line)
984 (sml/apply-theme 'automatic))
985 (font-lock-add-keywords
986 'org-mode b/org-mode-font-lock-keywords t)
987 (when (featurep 'erc-hl-nicks)
988 (erc-hl-nicks-reset-face-table))
989 (when (featurep 'exwm-systemtray)
990 (exwm-systemtray--refresh)))
991
992 (bind-keys
993 ("C-c t d" . b/lights-off)
994 ("C-c t l" . b/lights-on))
995
996 \f
997 ;;; Emacs enhancements & auxiliary packages
998
999 (use-package man
1000 :config (setq Man-width 80))
1001
1002 (use-package which-key
1003 :defer 0.4
1004 :config
1005 (which-key-add-key-based-replacements
1006 ;; prefixes for global prefixes and minor modes
1007 "C-c @" "outline"
1008 "C-c !" "flycheck"
1009 "C-x RET" "coding system"
1010 "C-x 8" "unicode"
1011 "C-x @" "event modifiers"
1012 "C-x a" "abbrev/expand"
1013 "C-x r" "rectangle/register/bookmark"
1014 "C-x t" "tabs"
1015 "C-x v" "version control"
1016 "C-x X" "edebug"
1017 "C-x C-a" "edebug"
1018 "C-x C-k" "kmacro"
1019 ;; prefixes for my personal bindings
1020 "C-c &" "yasnippet"
1021 "C-c a" "applications"
1022 "C-c a e" "erc"
1023 "C-c a o" "org"
1024 "C-c a s" "shells"
1025 "C-c b" "buffers"
1026 "C-c c" "compile-and-comments"
1027 "C-c e" "eval"
1028 "C-c f" "files"
1029 "C-c F" "frames"
1030 "C-c g" "magit"
1031 "C-S-h" "help(ful)"
1032 "C-c m" "multiple-cursors"
1033 "C-c p" "projectile"
1034 "C-c p s" "projectile/search"
1035 "C-c p x" "projectile/execute"
1036 "C-c p 4" "projectile/other-window"
1037 "C-c q" "boxquote"
1038 "C-c t" "themes"
1039 ;; "s-O" "outline"
1040 )
1041
1042 ;; prefixes for major modes
1043 (which-key-add-major-mode-key-based-replacements 'message-mode
1044 "C-c f n" "footnote")
1045 (which-key-add-major-mode-key-based-replacements 'org-mode
1046 "C-c C-v" "org-babel")
1047
1048 (which-key-mode)
1049 :custom
1050 (which-key-add-column-padding 5)
1051 (which-key-max-description-length 32))
1052
1053 (use-package crux ; results in Waiting for git... [2 times]
1054 :defer 0.4
1055 :bind (("C-c d" . crux-duplicate-current-line-or-region)
1056 ("C-c M-d" . crux-duplicate-and-comment-current-line-or-region)
1057 ("C-c f C" . crux-copy-file-preserve-attributes)
1058 ("C-c f D" . crux-delete-file-and-buffer)
1059 ("C-c f R" . crux-rename-file-and-buffer)
1060 ("C-c j" . crux-top-join-line)
1061 ("C-S-j" . crux-top-join-line)))
1062
1063 (use-package projectile
1064 :disabled
1065 :defer 0.5
1066 :bind-keymap ("C-c p" . projectile-command-map)
1067 :config
1068 (projectile-mode)
1069
1070 (defun b/projectile-mode-line-fun ()
1071 "Report project name and type in the modeline."
1072 (let ((project-name (projectile-project-name))
1073 (project-type (projectile-project-type)))
1074 (format "%s%s"
1075 projectile-mode-line-prefix
1076 (if project-type
1077 (format ":%s" project-type)
1078 ""))))
1079 (setq projectile-mode-line-function 'b/projectile-mode-line-fun)
1080
1081 (defun my-projectile-invalidate-cache (&rest _args)
1082 ;; ignore the args to `magit-checkout'
1083 (projectile-invalidate-cache nil))
1084
1085 (eval-after-load 'magit-branch
1086 '(progn
1087 (advice-add 'magit-checkout
1088 :after #'my-projectile-invalidate-cache)
1089 (advice-add 'magit-branch-and-checkout
1090 :after #'my-projectile-invalidate-cache)))
1091 :custom
1092 (projectile-completion-system 'ivy)
1093 (projectile-mode-line-prefix " proj"))
1094
1095 (use-package helpful
1096 :defer 0.6
1097 :bind
1098 (("C-S-h c" . helpful-command)
1099 ("C-S-h f" . helpful-callable) ; helpful-function
1100 ("C-S-h v" . helpful-variable)
1101 ("C-S-h k" . helpful-key)
1102 ("C-S-h p" . helpful-at-point)))
1103
1104 (use-package unkillable-scratch
1105 :defer 0.6
1106 :config
1107 (unkillable-scratch 1)
1108 :custom
1109 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1110
1111 ;; ,----
1112 ;; | make pretty boxed quotes like this
1113 ;; `----
1114 (use-package boxquote
1115 :defer 0.6
1116 :bind
1117 (:prefix-map b/boxquote-prefix-map
1118 :prefix "C-c q"
1119 ("b" . boxquote-buffer)
1120 ("B" . boxquote-insert-buffer)
1121 ("d" . boxquote-defun)
1122 ("F" . boxquote-insert-file)
1123 ("hf" . boxquote-describe-function)
1124 ("hk" . boxquote-describe-key)
1125 ("hv" . boxquote-describe-variable)
1126 ("hw" . boxquote-where-is)
1127 ("k" . boxquote-kill)
1128 ("p" . boxquote-paragraph)
1129 ("q" . boxquote-boxquote)
1130 ("r" . boxquote-region)
1131 ("s" . boxquote-shell-command)
1132 ("t" . boxquote-text)
1133 ("T" . boxquote-title)
1134 ("u" . boxquote-unbox)
1135 ("U" . boxquote-unbox-region)
1136 ("y" . boxquote-yank)
1137 ("M-q" . boxquote-fill-paragraph)
1138 ("M-w" . boxquote-kill-ring-save)))
1139
1140 (use-package orgalist
1141 ;; breaks auto-fill-mode, showing this error:
1142 ;; orgalist--boundaries: Lisp nesting exceeds ‘max-lisp-eval-depth’
1143 :disabled
1144 :after message
1145 :hook (message-mode . orgalist-mode))
1146
1147 ;; highlight TODOs in buffers
1148 (use-package hl-todo
1149 :defer 0.5
1150 :config
1151 (global-hl-todo-mode))
1152
1153 (use-package multi-term
1154 :disabled
1155 :defer 0.6
1156 :bind (("C-c a s m m" . multi-term)
1157 ("C-c a s m d" . multi-term-dedicated-toggle)
1158 ("C-c a s m p" . multi-term-prev)
1159 ("C-c a s m n" . multi-term-next)
1160 :map term-mode-map
1161 ("C-c C-j" . term-char-mode))
1162 :config
1163 (setq multi-term-program "screen"
1164 multi-term-program-switches (concat "-c"
1165 (getenv "XDG_CONFIG_HOME")
1166 "/screen/screenrc")
1167 ;; TODO: add separate bindings for connecting to existing
1168 ;; session vs. always creating a new one
1169 multi-term-dedicated-select-after-open-p t
1170 multi-term-dedicated-window-height 20
1171 multi-term-dedicated-max-window-height 30
1172 term-bind-key-alist
1173 '(("C-c C-c" . term-interrupt-subjob)
1174 ("C-c C-e" . term-send-esc)
1175 ("C-c C-j" . term-line-mode)
1176 ("C-k" . kill-line)
1177 ;; ("C-y" . term-paste)
1178 ("C-y" . term-send-raw)
1179 ("M-f" . term-send-forward-word)
1180 ("M-b" . term-send-backward-word)
1181 ("M-p" . term-send-up)
1182 ("M-n" . term-send-down)
1183 ("M-j" . term-send-raw-meta)
1184 ("M-y" . term-send-raw-meta)
1185 ("M-/" . term-send-raw-meta)
1186 ("M-0" . term-send-raw-meta)
1187 ("M-1" . term-send-raw-meta)
1188 ("M-2" . term-send-raw-meta)
1189 ("M-3" . term-send-raw-meta)
1190 ("M-4" . term-send-raw-meta)
1191 ("M-5" . term-send-raw-meta)
1192 ("M-6" . term-send-raw-meta)
1193 ("M-7" . term-send-raw-meta)
1194 ("M-8" . term-send-raw-meta)
1195 ("M-9" . term-send-raw-meta)
1196 ("<C-backspace>" . term-send-backward-kill-word)
1197 ("<M-DEL>" . term-send-backward-kill-word)
1198 ("M-d" . term-send-delete-word)
1199 ("M-," . term-send-raw)
1200 ("M-." . comint-dynamic-complete))
1201 term-unbind-key-alist
1202 '("C-z" "C-x" "C-c" "C-h"
1203 ;; "C-y"
1204 "<ESC>")))
1205
1206 (use-package page-break-lines
1207 :defer 0.5
1208 :custom
1209 (page-break-lines-max-width fill-column)
1210 :config
1211 (global-page-break-lines-mode))
1212
1213 (use-package expand-region
1214 :bind ("C-=" . er/expand-region))
1215
1216 (use-package multiple-cursors
1217 :bind
1218 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
1219 (:prefix-map b/mc-prefix-map
1220 :prefix "C-c m"
1221 ("c" . mc/edit-lines)
1222 ("n" . mc/mark-next-like-this)
1223 ("p" . mc/mark-previous-like-this)
1224 ("a" . mc/mark-all-like-this))))
1225
1226 (use-package yasnippet
1227 :defer 0.6
1228 :config
1229 (defconst yas-verbosity-cur yas-verbosity)
1230 (setq yas-verbosity 2)
1231 (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
1232 (yas-reload-all)
1233 (setq yas-verbosity yas-verbosity-cur)
1234
1235 (defun b/yas--maybe-expand-key-filter (cmd)
1236 (when (and (yas--maybe-expand-key-filter cmd)
1237 (not (bound-and-true-p git-commit-mode)))
1238 cmd))
1239 (defconst b/yas-maybe-expand
1240 '(menu-item "" yas-expand :filter b/yas--maybe-expand-key-filter))
1241 (define-key yas-minor-mode-map
1242 (kbd "SPC") b/yas-maybe-expand)
1243
1244 (yas-global-mode))
1245
1246 (use-package debbugs
1247 :bind
1248 (("C-c D d" . debbugs-gnu)
1249 ("C-c D b" . debbugs-gnu-bugs)
1250 ("C-c D e" .
1251 (lambda ()
1252 (interactive) ; bug-gnu-emacs
1253 (setq debbugs-gnu-current-suppress t)
1254 (debbugs-gnu debbugs-gnu-default-severities '("emacs"))))
1255 ("C-c D g" . ; bug-gnuzilla
1256 (lambda ()
1257 (interactive)
1258 (setq debbugs-gnu-current-suppress t)
1259 (debbugs-gnu debbugs-gnu-default-severities '("gnuzilla"))))
1260 ("C-c D G b" . ; bug-guix
1261 (lambda ()
1262 (interactive)
1263 (setq debbugs-gnu-current-suppress t)
1264 (debbugs-gnu debbugs-gnu-default-severities '("guix"))))
1265 ("C-c D G p" . ; guix-patches
1266 (lambda ()
1267 (interactive)
1268 (setq debbugs-gnu-current-suppress t)
1269 (debbugs-gnu debbugs-gnu-default-severities '("guix-patches"))))))
1270
1271 (use-package org-ref
1272 :init
1273 (b/setq-every '("~/usr/org/references.bib")
1274 reftex-default-bibliography
1275 org-ref-default-bibliography)
1276 (setq
1277 org-ref-bibliography-notes "~/usr/org/notes.org"
1278 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1279
1280 ;; (use-package fill-column-indicator)
1281
1282 (use-package window
1283 :bind
1284 (("C-c w s l" . (lambda ()
1285 (interactive)
1286 (split-window-right)
1287 (other-window 1)))
1288 ("C-c w s j" . (lambda ()
1289 (interactive)
1290 (split-window-below)
1291 (other-window 1)))
1292 ("C-c w q" . quit-window))
1293 :custom
1294 (split-width-threshold 150))
1295
1296 (use-package windmove
1297 :defer 0.6
1298 :bind
1299 (("C-c w h" . windmove-left)
1300 ("C-c w j" . windmove-down)
1301 ("C-c w k" . windmove-up)
1302 ("C-c w l" . windmove-right)
1303 ("C-c w H" . windmove-swap-states-left)
1304 ("C-c w J" . windmove-swap-states-down)
1305 ("C-c w K" . windmove-swap-states-up)
1306 ("C-c w L" . windmove-swap-states-right)))
1307
1308 (use-package pass
1309 :commands pass
1310 :bind ("C-c a p" . pass)
1311 :hook (pass-mode . View-exit))
1312
1313 (use-package pdf-tools
1314 :defer 0.5
1315 :bind (:map pdf-view-mode-map
1316 ("<C-XF86Back>" . pdf-history-backward)
1317 ("<mouse-8>" . pdf-history-backward)
1318 ("<drag-mouse-8>" . pdf-history-backward)
1319 ("<C-XF86Forward>" . pdf-history-forward)
1320 ("<mouse-9>" . pdf-history-forward)
1321 ("<drag-mouse-9>" . pdf-history-forward)
1322 ("M-RET" . image-previous-line)
1323 ("C-s" . isearch-forward)
1324 ("s s" . isearch-forward))
1325 :config (pdf-tools-install nil t)
1326 :custom (pdf-view-resize-factor 1.05))
1327
1328 (use-package org-pdftools
1329 :disabled
1330 :straight (:host github :repo "fuxialexander/org-pdftools")
1331 :demand
1332 :after org
1333 :config
1334 (with-eval-after-load 'org
1335 (require 'org-pdftools)))
1336
1337 (use-package biblio)
1338
1339 (use-package reftex
1340 :hook (latex-mode . reftex-mode))
1341
1342 (use-package reftex-cite
1343 :after reftex
1344 :disabled ; enable to disable
1345 ; reftex-cite's default choice
1346 ; of previous word
1347 :config
1348 (defun reftex-get-bibkey-default ()
1349 "If the cursor is in a citation macro, return the word before the macro."
1350 (let* ((macro (reftex-what-macro 1)))
1351 (save-excursion
1352 (when (and macro (string-match "cite" (car macro)))
1353 (goto-char (cdr macro)))
1354 (reftex-this-word)))))
1355
1356 (use-package minions
1357 :demand
1358 :config (minions-mode))
1359
1360 (use-package dmenu
1361 :custom
1362 (dmenu-prompt-string "run: ")
1363 (dmenu-save-file (b/var "dmenu-items")))
1364
1365 (use-package eosd
1366 ;; TODO: fix build by properly building the eosd-pixbuf.c module
1367 ;; e.g. see https://github.com/raxod502/straight.el/issues/386
1368 :disabled
1369 :straight (:host github :repo "clarete/eosd")
1370 :demand
1371 :after exwm
1372 :config
1373 (eosd-start))
1374
1375 (use-package eww
1376 :bind ("C-c a e w" . eww)
1377 :custom
1378 (eww-download-directory (file-name-as-directory
1379 (getenv "XDG_DOWNLOAD_DIR"))))
1380
1381 \f
1382 ;;; Post initialization
1383
1384 )
1385 (message "Loading %s...done (%.3fs)" user-init-file
1386 (float-time (time-subtract (current-time)
1387 b/before-user-init-time)))
1388
1389 ;;; init.el ends here