emacs: don’t hard code msmtp’s location, use executable-find instead
[~bandali/configs] / .emacs.d / init.el
CommitLineData
49e9503b 1;;; init.el --- Amin Bandali's Emacs config -*- lexical-binding: t -*-
41d290a2
AB
2
3;; Copyright (C) 2018-2019 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;; Emacs configuration of Amin Bandali, computer scientist, functional
b57457b2
AB
21;; programmer, and free software advocate. Uses straight.el for
22;; purely functional and fully reproducible package management.
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
41d290a2 35
49e9503b
AB
36;;; Code:
37
b57457b2
AB
38;;; Emacs initialization
39
41d290a2
AB
40(defvar a/before-user-init-time (current-time)
41 "Value of `current-time' when Emacs begins loading `user-init-file'.")
42(message "Loading Emacs...done (%.3fs)"
43 (float-time (time-subtract a/before-user-init-time
44 before-init-time)))
45
b57457b2
AB
46;; temporarily increase `gc-cons-threshhold' and `gc-cons-percentage'
47;; during startup to reduce garbage collection frequency. clearing
48;; `file-name-handler-alist' seems to help reduce startup time too.
41d290a2
AB
49(defvar a/gc-cons-threshold gc-cons-threshold)
50(defvar a/gc-cons-percentage gc-cons-percentage)
51(defvar a/file-name-handler-alist file-name-handler-alist)
52(setq gc-cons-threshold (* 400 1024 1024) ; 400 MiB
53 gc-cons-percentage 0.6
54 file-name-handler-alist nil
55 ;; sidesteps a bug when profiling with esup
56 esup-child-profile-require-level 0)
57
b57457b2 58;; set them back to their defaults once we're done initializing
9f7db1e8
AB
59(defun a/post-init ()
60 (setq gc-cons-threshold a/gc-cons-threshold
61 gc-cons-percentage a/gc-cons-percentage
62 file-name-handler-alist a/file-name-handler-alist))
63(add-hook 'after-init-hook #'a/post-init)
41d290a2 64
b57457b2 65;; increase number of lines kept in *Messages* log
41d290a2
AB
66(setq message-log-max 20000)
67
b57457b2
AB
68;; optionally, uncomment to supress some byte-compiler warnings
69;; (see C-h v byte-compile-warnings RET for more info)
41d290a2
AB
70;; (setq byte-compile-warnings
71;; '(not free-vars unresolved noruntime lexical make-local))
72
b57457b2
AB
73\f
74;;; whoami
75
41d290a2 76(setq user-full-name "Amin Bandali"
cad07800 77 user-mail-address "amin@shemshak.org")
41d290a2 78
b57457b2
AB
79\f
80;;; comment macro
81
82;; useful for commenting out multiple sexps at a time
83(defmacro comment (&rest _)
84 "Comment out one or more s-expressions."
85 (declare (indent defun))
86 nil)
87
88\f
89;;; Package management
90
91;; No package.el (for emacs 26 and before, uncomment the following)
92;; Not necessary when using straight.el
93;; (C-h v straight-package-neutering-mode RET)
94
16842394
AB
95(when (and
96 (not (featurep 'straight))
97 (version< emacs-version "27"))
b57457b2
AB
98 (setq package-enable-at-startup nil)
99 ;; (package-initialize)
100 )
101
102;; for emacs 27 and later, we use early-init.el. see
103;; https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=24acb31c04b4048b85311d794e600ecd7ce60d3b
104
105;; straight.el
106
41d290a2
AB
107;; Main engine start...
108
109(setq straight-repository-branch "develop"
110 straight-check-for-modifications '(check-on-save find-when-checking))
111
112(defun a/bootstrap-straight ()
113 (defvar bootstrap-version)
114 (let ((bootstrap-file
115 (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
116 (bootstrap-version 5))
117 (unless (file-exists-p bootstrap-file)
118 (with-current-buffer
119 (url-retrieve-synchronously
120 "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
121 'silent 'inhibit-cookies)
122 (goto-char (point-max))
123 (eval-print-last-sexp)))
124 (load bootstrap-file nil 'nomessage)))
125
126;; Solid rocket booster ignition...
127
41d290a2
AB
128(a/bootstrap-straight)
129
130;; We have lift off!
131
132(setq straight-use-package-by-default t)
133
134(defmacro use-feature (name &rest args)
135 "Like `use-package', but with `straight-use-package-by-default' disabled."
136 (declare (indent defun))
137 `(use-package ,name
138 :straight nil
139 ,@args))
140
141(with-eval-after-load 'recentf
142 (add-to-list 'recentf-exclude
143 (expand-file-name "~/.emacs.d/straight/build/")))
144
145(defun a/reload-init ()
146 "Reload init.el."
147 (interactive)
18f8d913
AB
148 (setq a/file-name-handler-alist file-name-handler-alist)
149 (load user-init-file nil 'nomessage)
150 (a/post-init))
41d290a2 151
b57457b2 152;; use-package
41d290a2
AB
153(straight-use-package 'use-package)
154(if nil ; set to t when need to debug init
155 (progn
156 (setq use-package-verbose t
157 use-package-expand-minimally nil
158 use-package-compute-statistics t
159 debug-on-error t)
160 (require 'use-package))
161 (setq use-package-verbose nil
162 use-package-expand-minimally t))
163
164(setq use-package-always-defer t)
165(require 'bind-key)
166
54209e74
AB
167(use-package delight)
168
b57457b2
AB
169;; for browsing the Emacsmirror package database
170(comment
171 (use-package epkg
172 :commands (epkg-list-packages epkg-describe-package)
173 :bind
174 (("C-c p e d" . epkg-describe-package)
175 ("C-c p e p" . epkg-list-packages))
176 :config
177 (setq epkg-repository "~/.emacs.d/straight/repos/epkgs/")
178 (eval-when-compile (defvar ivy-initial-inputs-alist))
179 (with-eval-after-load 'ivy
180 (add-to-list
181 'ivy-initial-inputs-alist '(epkg-describe-package . "^") t))))
182
183\f
184;;; Initial setup
185
186;; keep ~/.emacs.d clean
41d290a2
AB
187(use-package no-littering
188 :demand t
189 :config
190 (savehist-mode 1)
191 (add-to-list 'savehist-additional-variables 'kill-ring)
192 (save-place-mode 1)
193 (setq auto-save-file-name-transforms
194 `((".*" ,(no-littering-expand-var-file-name "auto-save/") t))))
195
b57457b2 196;; separate custom file (don't want it mixing with init.el)
41d290a2
AB
197(use-feature custom
198 :no-require t
199 :config
200 (setq custom-file (no-littering-expand-etc-file-name "custom.el"))
201 (when (file-exists-p custom-file)
202 (load custom-file))
b57457b2 203 ;; while at it, treat themes as safe
41d290a2
AB
204 (setf custom-safe-themes t))
205
b57457b2 206;; load the secrets file if it exists, otherwise show a warning
41d290a2
AB
207(with-demoted-errors
208 (load (no-littering-expand-etc-file-name "secrets")))
209
b57457b2 210;; better $PATH (and other environment variable) handling
41d290a2
AB
211(use-package exec-path-from-shell
212 :defer 0.4
213 :init
214 (setq exec-path-from-shell-arguments nil
215 exec-path-from-shell-check-startup-files nil)
216 :config
217 (exec-path-from-shell-initialize)
218 ;; while we're at it, let's fix access to our running ssh-agent
219 (exec-path-from-shell-copy-env "SSH_AGENT_PID")
220 (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
221
b57457b2
AB
222;; only one custom theme at a time
223(comment
224 (defadvice load-theme (before clear-previous-themes activate)
225 "Clear existing theme settings instead of layering them"
226 (mapc #'disable-theme custom-enabled-themes)))
227
228;; start up emacs server. see
229;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server
41d290a2
AB
230(use-feature server
231 :defer 0.4
232 :config (or (server-running-p) (server-mode)))
233
b57457b2
AB
234;; unicode support
235(comment
236 (dolist (ft (fontset-list))
237 (set-fontset-font
238 ft
239 'unicode
240 (font-spec :name "Source Code Pro" :size 14))
241 (set-fontset-font
242 ft
243 'unicode
244 (font-spec :name "DejaVu Sans Mono")
245 nil
246 'append)
247 ;; (set-fontset-font
248 ;; ft
249 ;; 'unicode
250 ;; (font-spec
251 ;; :name "Symbola monospacified for DejaVu Sans Mono")
252 ;; nil
253 ;; 'append)
254 ;; (set-fontset-font
255 ;; ft
256 ;; #x2115 ; ℕ
257 ;; (font-spec :name "DejaVu Sans Mono")
258 ;; nil
259 ;; 'append)
260 (set-fontset-font
261 ft
262 (cons ?Α ?ω)
263 (font-spec :name "DejaVu Sans Mono" :size 14)
264 nil
265 'prepend)))
266
267;; gentler font resizing
41d290a2
AB
268(setq text-scale-mode-step 1.05)
269
b57457b2 270;; focus follows mouse
41d290a2
AB
271(setq mouse-autoselect-window t)
272
273(defun a/no-mouse-autoselect-window ()
b57457b2
AB
274 "Conveniently disable `focus-follows-mouse'.
275For disabling the behaviour for certain buffers and/or modes."
41d290a2
AB
276 (make-local-variable 'mouse-autoselect-window)
277 (setq mouse-autoselect-window nil))
278
b57457b2 279;; better scrolling
41d290a2
AB
280(setq ;; scroll-margin 1
281 ;; scroll-conservatively 10000
282 scroll-step 1
283 scroll-conservatively 10
284 scroll-preserve-screen-position 1)
285
286(use-feature mwheel
287 :defer 0.4
288 :config
289 (setq mouse-wheel-scroll-amount '(1 ((shift) . 1)) ; one line at a time
290 mouse-wheel-progressive-speed nil ; don't accelerate scrolling
291 mouse-wheel-follow-mouse t)) ; scroll window under mouse
292
293(use-feature pixel-scroll
294 :defer 0.4
295 :config (pixel-scroll-mode 1))
296
b57457b2 297;; ask for GPG passphrase in minibuffer
41d290a2
AB
298(setq epg-pinentry-mode 'loopback)
299
b57457b2 300;; useful libraries
41d290a2
AB
301(require 'cl-lib)
302(require 'subr-x)
303
b57457b2
AB
304\f
305;;; Useful utilities
306
41d290a2
AB
307(defmacro a/setq-every (value &rest vars)
308 "Set all the variables from VARS to value VALUE."
309 (declare (indent defun) (debug t))
310 `(progn ,@(mapcar (lambda (x) (list 'setq x value)) vars)))
311
312(defun a/start-process (program &rest args)
313 "Same as `start-process', but doesn't bother about name and buffer."
314 (let ((process-name (concat program "_process"))
315 (buffer-name (generate-new-buffer-name
316 (concat program "_output"))))
317 (apply #'start-process
318 process-name buffer-name program args)))
319
320(defun a/dired-start-process (program &optional args)
321 "Open current file with a PROGRAM."
322 ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can
323 ;; be nil, so remove it).
324 (apply #'a/start-process
325 program
326 (remove nil (list args (dired-get-file-for-visit)))))
327
b57457b2
AB
328(defun a/add-elisp-section ()
329 (interactive)
330 (insert "\n")
331 (previous-line)
332 (insert "\n\f\n;;; "))
333
334\f
335;;; Defaults
336
337;; time and battery in mode-line
338(comment
339 (use-package time
340 :init
341 (setq display-time-default-load-average nil)
342 :config
343 (display-time-mode))
344
345 (use-package battery
346 :config
347 (display-battery-mode)))
348
349;; smaller fringe
41d290a2
AB
350;; (fringe-mode '(3 . 1))
351(fringe-mode nil)
352
b57457b2 353;; disable disabled commands
41d290a2
AB
354(setq disabled-command-function nil)
355
b57457b2
AB
356;; Save what I copy into clipboard from other applications into Emacs'
357;; kill-ring, which would allow me to still be able to easily access
358;; it in case I kill (cut or copy) something else inside Emacs before
359;; yanking (pasting) what I'd originally intended to.
41d290a2
AB
360(setq save-interprogram-paste-before-kill t)
361
b57457b2 362;; minibuffer
41d290a2
AB
363(setq enable-recursive-minibuffers t
364 resize-mini-windows t)
365
b57457b2 366;; lazy-person-friendly yes/no prompts
41d290a2
AB
367(defalias 'yes-or-no-p #'y-or-n-p)
368
b57457b2 369;; i want *scratch* as my startup buffer
41d290a2
AB
370(setq initial-buffer-choice t)
371
b57457b2 372;; i don't need the default hint
41d290a2
AB
373(setq initial-scratch-message nil)
374
b57457b2 375;; use customizable text-mode as major mode for *scratch*
41d290a2
AB
376(setq initial-major-mode 'text-mode)
377
b57457b2 378;; inhibit buffer list when more than 2 files are loaded
41d290a2
AB
379(setq inhibit-startup-buffer-menu t)
380
b57457b2 381;; don't need to see the startup screen or the echo area message
41d290a2
AB
382(advice-add #'display-startup-echo-area-message :override #'ignore)
383(setq inhibit-startup-screen t
384 inhibit-startup-echo-area-message user-login-name)
385
b57457b2 386;; more useful frame titles
41d290a2
AB
387(setq frame-title-format
388 '("" invocation-name " - "
389 (:eval (if (buffer-file-name)
390 (abbreviate-file-name (buffer-file-name))
391 "%b"))))
392
b57457b2 393;; backups (C-h v make-backup-files RET)
41d290a2
AB
394(setq backup-by-copying t
395 version-control t
396 delete-old-versions t)
397
b57457b2 398;; enable automatic reloading of changed buffers and files
41d290a2
AB
399(global-auto-revert-mode 1)
400(setq auto-revert-verbose nil
401 global-auto-revert-non-file-buffers nil)
402
b57457b2 403;; always use space for indentation
41d290a2
AB
404(setq-default
405 indent-tabs-mode nil
406 require-final-newline t
407 tab-width 4)
408
b57457b2 409;; enable winner-mode (C-h f winner-mode RET)
41d290a2
AB
410(winner-mode 1)
411
b57457b2
AB
412;; don't display *compilation* buffer on success. based on
413;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
414;; instead of the now obsolete `flet'.
41d290a2
AB
415(with-eval-after-load 'compile
416 (defun a/compilation-finish-function (buffer outstr)
417 (unless (string-match "finished" outstr)
418 (switch-to-buffer-other-window buffer))
419 t)
420
421 (setq compilation-finish-functions #'a/compilation-finish-function)
422
423 (require 'cl-macs)
424
425 (defadvice compilation-start
426 (around inhibit-display
427 (command &optional mode name-function highlight-regexp))
428 (if (not (string-match "^\\(find\\|grep\\)" command))
429 (cl-letf (((symbol-function 'display-buffer) #'ignore))
430 (save-window-excursion ad-do-it))
431 ad-do-it))
432 (ad-activate 'compilation-start))
433
b57457b2
AB
434;; search for non-ASCII characters: i’d like non-ASCII characters such
435;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
436;; counterpart. shoutout to
437;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
41d290a2 438(setq search-default-mode #'char-fold-to-regexp)
41d290a2
AB
439;; uncomment to extend this behaviour to query-replace
440;; (setq replace-char-fold t)
441
b57457b2 442;; cursor shape
41d290a2
AB
443(setq-default cursor-type 'bar)
444
b57457b2 445;; allow scrolling in Isearch
41d290a2
AB
446(setq isearch-allow-scroll t)
447
b9901074
AB
448;; open read-only file buffers in view-mode
449;; (enables niceties like `q' for quit)
450(setq view-read-only t)
451
b1a5d811
AB
452(use-feature vc
453 :bind ("C-x v C-=" . vc-ediff))
454
455(use-feature ediff
456 :config (add-hook 'ediff-after-quit-hook-internal 'winner-undo)
457 :custom ((ediff-window-setup-function 'ediff-setup-windows-plain)
458 (ediff-split-window-function 'split-window-horizontally)))
459
b57457b2
AB
460\f
461;;; General bindings
462
41d290a2
AB
463(bind-keys
464 ("C-c a i" . ielm)
465
466 ("C-c e b" . eval-buffer)
467 ("C-c e r" . eval-region)
468
469 ("C-c e i" . emacs-init-time)
470 ("C-c e u" . emacs-uptime)
471
472 ("C-c F m" . make-frame-command)
473 ("C-c F d" . delete-frame)
435306f6 474 ("C-c F D" . server-edit)
41d290a2 475
41d290a2
AB
476 ("C-S-h C" . describe-char)
477 ("C-S-h F" . describe-face)
478
479 ("C-x k" . kill-this-buffer)
480 ("C-x K" . kill-buffer)
481
482 ("s-p" . beginning-of-buffer)
b57457b2
AB
483 ("s-n" . end-of-buffer)
484
526dc1d9
AB
485 ("M-o" . other-window)
486 ("M-O" . facemenu-keymap)
487
b57457b2
AB
488 :map emacs-lisp-mode-map
489 ("<C-return>" . a/add-elisp-section))
41d290a2
AB
490
491(when (display-graphic-p)
492 (unbind-key "C-z" global-map))
493
500004f4
AB
494(bind-keys
495 ;; for back and forward mouse keys
496 ("<mouse-8>" . previous-buffer)
497 ("<drag-mouse-8>" . previous-buffer)
498 ("<mouse-9>" . next-buffer)
499 ("<drag-mouse-9>" . next-buffer)
500 ("<drag-mouse-2>" . kill-this-buffer)
501 ("<drag-mouse-3>" . ivy-switch-buffer))
502
41d290a2
AB
503(bind-keys
504 :prefix-map a/straight-prefix-map
505 :prefix "C-c p s"
506 ("u" . straight-use-package)
507 ("f" . straight-freeze-versions)
508 ("t" . straight-thaw-versions)
509 ("P" . straight-prune-build)
510 ("g" . straight-get-recipe)
511 ("r" . a/reload-init)
512 ;; M-x ^straight-.*-all$
513 ("a c" . straight-check-all)
514 ("a f" . straight-fetch-all)
515 ("a m" . straight-merge-all)
516 ("a n" . straight-normalize-all)
517 ("a F" . straight-pull-all)
518 ("a P" . straight-push-all)
519 ("a r" . straight-rebuild-all)
520 ;; M-x ^straight-.*-package$
521 ("p c" . straight-check-package)
522 ("p f" . straight-fetch-package)
523 ("p m" . straight-merge-package)
524 ("p n" . straight-normalize-package)
525 ("p F" . straight-pull-package)
526 ("p P" . straight-push-package)
527 ("p r" . straight-rebuild-package))
528
b57457b2
AB
529\f
530;;; Essential packages
531
41d290a2
AB
532(use-package auto-compile
533 :demand t
534 :config
535 (auto-compile-on-load-mode)
536 (auto-compile-on-save-mode)
537 (setq auto-compile-display-buffer nil
538 auto-compile-mode-line-counter t
539 auto-compile-source-recreate-deletes-dest t
540 auto-compile-toggle-deletes-nonlib-dest t
541 auto-compile-update-autoloads t)
542 (add-hook 'auto-compile-inhibit-compile-hook
543 'auto-compile-inhibit-compile-detached-git-head))
544
b57457b2 545;; use the org-plus-contrib package to get the whole deal
41d290a2
AB
546(straight-use-package 'org-plus-contrib)
547
548(use-feature org
549 :defer 0.5
550 :config
551 (setq org-src-tab-acts-natively t
552 org-src-preserve-indentation nil
553 org-edit-src-content-indentation 0
554 org-link-email-description-format "Email %c: %s" ; %.30s
555 org-highlight-latex-and-related '(entities)
556 org-use-speed-commands t
557 org-startup-folded 'content
558 org-catch-invisible-edits 'show-and-error
559 org-log-done 'time)
560 (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t)
561 :bind
562 (("C-c a o a" . org-agenda)
563 :map org-mode-map
564 ("M-L" . org-insert-last-stored-link)
34c6cf4c 565 ("M-O" . org-toggle-link-display)
41d290a2
AB
566 ("s-T" . org-todo))
567 :hook ((org-mode . org-indent-mode)
568 (org-mode . auto-fill-mode)
569 (org-mode . flyspell-mode))
570 :custom
571 (org-agenda-files '("~/usr/org/todos/personal.org"
572 "~/usr/org/todos/masters.org"))
573 (org-agenda-start-on-weekday 0)
574 (org-latex-packages-alist '(("" "listings") ("" "color")))
575 :custom-face
576 '(org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21"))))
577 '(org-block ((t (:background "#1d1f21"))))
578 '(org-latex-and-related ((t (:foreground "#b294bb")))))
579
580(use-feature ox-latex
581 :after ox
582 :config
583 (setq org-latex-listings 'listings
584 ;; org-latex-prefer-user-labels t
585 )
586 (add-to-list 'org-latex-classes
587 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
588 ("\\section{%s}" . "\\section*{%s}")
589 ("\\subsection{%s}" . "\\subsection*{%s}")
590 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
591 ("\\paragraph{%s}" . "\\paragraph*{%s}")
592 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
593 t)
594 (require 'ox-beamer))
595
596(use-feature ox-extra
597 :config
598 (ox-extras-activate '(latex-header-blocks ignore-headlines)))
599
b57457b2
AB
600;; asynchronous tangle, using emacs-async to asynchronously tangle an
601;; org file. closely inspired by
602;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
41d290a2
AB
603(with-eval-after-load 'org
604 (defvar a/show-async-tangle-results nil
605 "Keep *emacs* async buffers around for later inspection.")
606
607 (defvar a/show-async-tangle-time nil
608 "Show the time spent tangling the file.")
609
41d290a2
AB
610 (defun a/async-babel-tangle ()
611 "Tangle org file asynchronously."
612 (interactive)
613 (let* ((file-tangle-start-time (current-time))
614 (file (buffer-file-name))
615 (file-nodir (file-name-nondirectory file))
616 ;; (async-quiet-switch "-q")
617 (file-noext (file-name-sans-extension file)))
618 (async-start
619 `(lambda ()
620 (require 'org)
621 (org-babel-tangle-file ,file))
622 (unless a/show-async-tangle-results
623 `(lambda (result)
624 (if result
29ea9439
AB
625 (message "Tangled %s%s"
626 ,file-nodir
627 (if a/show-async-tangle-time
628 (format " (%.3fs)"
629 (float-time (time-subtract (current-time)
630 ',file-tangle-start-time)))
631 ""))
41d290a2
AB
632 (message "Tangling %s failed" ,file-nodir))))))))
633
634(add-to-list
635 'safe-local-variable-values
636 '(eval add-hook 'after-save-hook #'a/async-babel-tangle 'append 'local))
637
b57457b2 638;; *the* right way to do git
41d290a2
AB
639(use-package magit
640 :defer 0.5
641 :bind (("C-x g" . magit-status)
642 ("s-g s" . magit-status)
643 ("s-g l" . magit-log-buffer-file))
644 :config
645 (magit-add-section-hook 'magit-status-sections-hook
646 'magit-insert-modules
647 'magit-insert-stashes
648 'append)
649 (setq magit-repository-directories '(("~/" . 0)
650 ("~/src/git/" . 1)))
651 (nconc magit-section-initial-visibility-alist
652 '(([unpulled status] . show)
653 ([unpushed status] . show)))
afbbf23a 654 :custom (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1)
41d290a2
AB
655 :custom-face (magit-diff-file-heading ((t (:weight normal)))))
656
b57457b2 657;; recently opened files
41d290a2
AB
658(use-feature recentf
659 :defer 0.2
660 :config
9424b3d6 661 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
fc995e3d 662 (setq recentf-max-saved-items 2000))
41d290a2 663
b57457b2 664;; smart M-x enhancement (needed by counsel for history)
41d290a2
AB
665(use-package smex)
666
667(use-package ivy
668 :defer 0.3
54209e74 669 :delight ;; " 🙒"
41d290a2
AB
670 :bind
671 (:map ivy-minibuffer-map
672 ([escape] . keyboard-escape-quit)
673 ([S-up] . ivy-previous-history-element)
674 ([S-down] . ivy-next-history-element)
675 ("DEL" . ivy-backward-delete-char))
676 :config
677 (setq ivy-wrap t
678 ivy-height 14
679 ivy-use-virtual-buffers t
680 ivy-virtual-abbreviate 'abbreviate
681 ivy-count-format "%d/%d ")
682 (ivy-mode 1)
683 ;; :custom-face
684 ;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold))))
685 ;; (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold))))
686 ;; (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold))))
687)
688
689(use-package swiper
690 :after ivy
691 :bind (("C-s" . swiper-isearch)
692 ("C-r" . swiper)
693 ("C-S-s" . isearch-forward)))
694
695(use-package counsel
696 :after ivy
54209e74 697 :delight
41d290a2
AB
698 :bind (([remap execute-extended-command] . counsel-M-x)
699 ([remap find-file] . counsel-find-file)
700 ("C-c x" . counsel-M-x)
701 ("C-c f ." . counsel-find-file)
702 ("C-c f l" . counsel-find-library)
2b53c994
AB
703 ("C-c f r" . counsel-recentf)
704 ("s-." . counsel-find-file)
705 ("s-r" . ivy-switch-buffer)
41d290a2
AB
706 :map minibuffer-local-map
707 ("C-r" . counsel-minibuffer-history))
708 :config
709 (counsel-mode 1)
710 (defalias 'locate #'counsel-locate))
711
b57457b2
AB
712(comment
713 (use-package helm
714 :commands (helm-M-x helm-mini helm-resume)
715 :bind (("M-x" . helm-M-x)
716 ("M-y" . helm-show-kill-ring)
717 ("C-x b" . helm-mini)
718 ("C-x C-b" . helm-buffers-list)
719 ("C-x C-f" . helm-find-files)
720 ("C-h r" . helm-info-emacs)
721 ("s-r" . helm-recentf)
722 ("C-s-r" . helm-resume)
723 :map helm-map
724 ("<tab>" . helm-execute-persistent-action)
725 ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals
726 ("C-z" . helm-select-action)) ; List actions
727 :config (helm-mode 1)))
728
41d290a2
AB
729(use-feature eshell
730 :defer 0.5
731 :commands eshell
732 :bind ("C-c a s e" . eshell)
733 :config
734 (eval-when-compile (defvar eshell-prompt-regexp))
735 (defun a/eshell-quit-or-delete-char (arg)
736 (interactive "p")
737 (if (and (eolp) (looking-back eshell-prompt-regexp nil))
738 (eshell-life-is-too-much)
739 (delete-char arg)))
740
741 (defun a/eshell-clear ()
742 (interactive)
743 (let ((inhibit-read-only t))
744 (erase-buffer))
745 (eshell-send-input))
746
747 (defun a/eshell-setup ()
748 (make-local-variable 'company-idle-delay)
749 (defvar company-idle-delay)
750 (setq company-idle-delay nil)
751 (bind-keys :map eshell-mode-map
752 ("C-d" . a/eshell-quit-or-delete-char)
753 ("C-S-l" . a/eshell-clear)
754 ("M-r" . counsel-esh-history)
755 ([tab] . company-complete)))
756
757 :hook (eshell-mode . a/eshell-setup)
758 :custom
759 (eshell-hist-ignoredups t)
760 (eshell-input-filter 'eshell-input-filter-initial-space))
761
762(use-feature ibuffer
763 :bind
764 (("C-x C-b" . ibuffer-other-window)
765 :map ibuffer-mode-map
766 ("P" . ibuffer-backward-filter-group)
767 ("N" . ibuffer-forward-filter-group)
768 ("M-p" . ibuffer-do-print)
769 ("M-n" . ibuffer-do-shell-command-pipe-replace))
770 :config
771 ;; Use human readable Size column instead of original one
772 (define-ibuffer-column size-h
773 (:name "Size" :inline t)
774 (cond
775 ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0)))
776 ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0)))
777 ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0)))
778 (t (format "%8d" (buffer-size)))))
779 :custom
780 (ibuffer-saved-filter-groups
781 '(("default"
782 ("dired" (mode . dired-mode))
783 ("org" (mode . org-mode))
784 ("gnus"
785 (or
786 (mode . gnus-group-mode)
787 (mode . gnus-summary-mode)
788 (mode . gnus-article-mode)
789 ;; not really, but...
790 (mode . message-mode)))
791 ("web"
792 (or
793 (mode . web-mode)
794 (mode . css-mode)
795 (mode . scss-mode)
796 (mode . js2-mode)))
797 ("shell"
798 (or
799 (mode . eshell-mode)
800 (mode . shell-mode)
801 (mode . term-mode)))
802 ("programming"
803 (or
804 (mode . python-mode)
805 (mode . c-mode)
806 (mode . c++-mode)
807 (mode . java-mode)
808 (mode . emacs-lisp-mode)
809 (mode . scheme-mode)
810 (mode . haskell-mode)
811 (mode . lean-mode)
99473567 812 (mode . go-mode)
41d290a2
AB
813 (mode . alloy-mode)))
814 ("tex"
815 (or
816 (mode . bibtex-mode)
817 (mode . latex-mode)))
818 ("emacs"
819 (or
820 (name . "^\\*scratch\\*$")
821 (name . "^\\*Messages\\*$")))
822 ("erc" (mode . erc-mode)))))
823 (ibuffer-formats
824 '((mark modified read-only locked " "
825 (name 18 18 :left :elide)
826 " "
827 (size-h 9 -1 :right)
828 " "
829 (mode 16 16 :left :elide)
830 " " filename-and-process)
831 (mark " "
832 (name 16 -1)
833 " " filename)))
834 :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
835
836(use-feature outline
837 :hook (prog-mode . outline-minor-mode)
54209e74 838 :delight (outline-minor-mode " outl")
41d290a2
AB
839 :bind
840 (:map
841 outline-minor-mode-map
842 ("<s-tab>" . outline-toggle-children)
843 ("M-p" . outline-previous-visible-heading)
844 ("M-n" . outline-next-visible-heading)
845 :prefix-map a/outline-prefix-map
846 :prefix "s-o"
847 ("TAB" . outline-toggle-children)
848 ("a" . outline-hide-body)
849 ("H" . outline-hide-body)
850 ("S" . outline-show-all)
851 ("h" . outline-hide-subtree)
852 ("s" . outline-show-subtree)))
853
854(use-feature ls-lisp
855 :custom (ls-lisp-dirs-first t))
856
857(use-feature dired
858 :config
859 (setq dired-listing-switches "-alh"
860 ls-lisp-use-insert-directory-program nil)
861
862 ;; easily diff 2 marked files
863 ;; https://oremacs.com/2017/03/18/dired-ediff/
864 (defun dired-ediff-files ()
865 (interactive)
866 (require 'dired-aux)
867 (defvar ediff-after-quit-hook-internal)
868 (let ((files (dired-get-marked-files))
869 (wnd (current-window-configuration)))
870 (if (<= (length files) 2)
871 (let ((file1 (car files))
872 (file2 (if (cdr files)
873 (cadr files)
874 (read-file-name
875 "file: "
876 (dired-dwim-target-directory)))))
877 (if (file-newer-than-file-p file1 file2)
878 (ediff-files file2 file1)
879 (ediff-files file1 file2))
880 (add-hook 'ediff-after-quit-hook-internal
881 (lambda ()
882 (setq ediff-after-quit-hook-internal nil)
883 (set-window-configuration wnd))))
884 (error "no more than 2 files should be marked"))))
06ee5a00
AB
885
886 (require 'dired-x)
887 (setq dired-guess-shell-alist-user
888 '(("\\.pdf\\'" "evince" "zathura" "okular")
889 ("\\.doc\\'" "libreoffice")
890 ("\\.docx\\'" "libreoffice")
891 ("\\.ppt\\'" "libreoffice")
892 ("\\.pptx\\'" "libreoffice")
893 ("\\.xls\\'" "libreoffice")
894 ("\\.xlsx\\'" "libreoffice")
895 ("\\.flac\\'" "mpv")))
41d290a2
AB
896 :bind (:map dired-mode-map
897 ("b" . dired-up-directory)
898 ("e" . dired-ediff-files)
899 ("E" . dired-toggle-read-only)
900 ("\\" . dired-hide-details-mode)
901 ("z" . (lambda ()
902 (interactive)
903 (a/dired-start-process "zathura"))))
904 :hook (dired-mode . dired-hide-details-mode))
905
906(use-feature help
907 :config
908 (temp-buffer-resize-mode)
909 (setq help-window-select t))
910
911(use-feature tramp
912 :config
913 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
914 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
915 (add-to-list 'tramp-default-proxies-alist
916 (list (regexp-quote (system-name)) nil nil)))
917
918(use-package dash
919 :config (dash-enable-font-lock))
920
921(use-package doc-view
922 :bind (:map doc-view-mode-map
923 ("M-RET" . image-previous-line)))
924
b57457b2
AB
925\f
926;;; Editing
927
928;; highlight uncommitted changes in the left fringe
41d290a2 929(use-package diff-hl
df1c9bc8 930 :defer 0.6
41d290a2
AB
931 :config
932 (setq diff-hl-draw-borders nil)
933 (global-diff-hl-mode)
934 :hook (magit-post-refresh . diff-hl-magit-post-refresh))
935
b57457b2 936;; display Lisp objects at point in the echo area
41d290a2
AB
937(use-feature eldoc
938 :when (version< "25" emacs-version)
54209e74 939 :delight " eldoc"
41d290a2
AB
940 :config (global-eldoc-mode))
941
b57457b2 942;; highlight matching parens
41d290a2
AB
943(use-feature paren
944 :demand
945 :config (show-paren-mode))
946
40eddfea
AB
947(use-feature elec-pair
948 :demand
949 :config (electric-pair-mode))
950
41d290a2 951(use-feature simple
54209e74 952 :delight (auto-fill-function " fill")
41d290a2
AB
953 :config (column-number-mode))
954
b57457b2 955;; save minibuffer history
41d290a2
AB
956(use-feature savehist
957 :config (savehist-mode))
958
b57457b2 959;; automatically save place in files
41d290a2
AB
960(use-feature saveplace
961 :when (version< "25" emacs-version)
962 :config (save-place-mode))
963
964(use-feature prog-mode
965 :config (global-prettify-symbols-mode)
966 (defun indicate-buffer-boundaries-left ()
967 (setq indicate-buffer-boundaries 'left))
968 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
969
970(use-feature text-mode
54209e74 971 :hook (text-mode . indicate-buffer-boundaries-left))
41d290a2 972
300b7363
AB
973(use-feature conf-mode
974 :mode "\\.*rc$")
975
976(use-feature sh-mode
977 :mode "\\.bashrc$")
978
41d290a2
AB
979(use-package company
980 :defer 0.6
0c53f5ae 981 :delight " comp"
41d290a2
AB
982 :bind
983 (:map company-active-map
984 ([tab] . company-complete-common-or-cycle)
985 ([escape] . company-abort))
986 :custom
987 (company-minimum-prefix-length 1)
988 (company-selection-wrap-around t)
989 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
990 (company-dabbrev-downcase nil)
991 (company-dabbrev-ignore-case nil)
992 :config
993 (global-company-mode t))
994
995(use-package flycheck
996 :defer 0.6
997 :hook (prog-mode . flycheck-mode)
998 :bind
999 (:map flycheck-mode-map
1000 ("M-P" . flycheck-previous-error)
1001 ("M-N" . flycheck-next-error))
1002 :config
1003 ;; Use the load-path from running Emacs when checking elisp files
1004 (setq flycheck-emacs-lisp-load-path 'inherit)
1005
1006 ;; Only flycheck when I actually save the buffer
54209e74
AB
1007 (setq flycheck-check-syntax-automatically '(mode-enabled save))
1008 :custom (flycheck-mode-line-prefix "flyc"))
1009
1010(use-feature flyspell
1011 :delight " flysp")
41d290a2
AB
1012
1013;; http://endlessparentheses.com/ispell-and-apostrophes.html
1014(use-package ispell
1015 :defer 0.6
1016 :config
1017 ;; ’ can be part of a word
1018 (setq ispell-local-dictionary-alist
1019 `((nil "[[:alpha:]]" "[^[:alpha:]]"
b1ed9ee8
AB
1020 "['\x2019]" nil ("-B") nil utf-8))
1021 ispell-program-name (executable-find "hunspell"))
41d290a2
AB
1022 ;; don't send ’ to the subprocess
1023 (defun endless/replace-apostrophe (args)
1024 (cons (replace-regexp-in-string
1025 "’" "'" (car args))
1026 (cdr args)))
1027 (advice-add #'ispell-send-string :filter-args
1028 #'endless/replace-apostrophe)
1029
1030 ;; convert ' back to ’ from the subprocess
1031 (defun endless/replace-quote (args)
1032 (if (not (derived-mode-p 'org-mode))
1033 args
1034 (cons (replace-regexp-in-string
1035 "'" "’" (car args))
1036 (cdr args))))
1037 (advice-add #'ispell-parse-output :filter-args
1038 #'endless/replace-quote))
1039
54209e74
AB
1040(use-feature abbrev
1041 :delight " abbr"
1042 :hook (text-mode . abbrev-mode))
1043
b57457b2
AB
1044\f
1045;;; Programming modes
1046
41d290a2
AB
1047(use-feature lisp-mode
1048 :config
41d290a2
AB
1049 (defun indent-spaces-mode ()
1050 (setq indent-tabs-mode nil))
1051 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
1052
54209e74
AB
1053(use-feature reveal
1054 :delight (reveal-mode " reveal")
1055 :hook (emacs-lisp-mode . reveal-mode))
1056
1057(use-feature elisp-mode
1058 :delight (emacs-lisp-mode "Elisp" :major))
1059
41d290a2
AB
1060(use-package alloy-mode
1061 :straight (:host github :repo "dwwmmn/alloy-mode")
1062 :mode "\\.als\\'"
1063 :config (setq alloy-basic-offset 2))
1064
b57457b2 1065(use-package proof-site ; for Coq
41d290a2
AB
1066 :straight proof-general)
1067
1068(eval-when-compile (defvar lean-mode-map))
1069(use-package lean-mode
1070 :defer 0.4
1071 :bind (:map lean-mode-map
1072 ("S-SPC" . company-complete))
1073 :config
1074 (require 'lean-input)
1075 (setq default-input-method "Lean"
1076 lean-input-tweak-all '(lean-input-compose
1077 (lean-input-prepend "/")
1078 (lean-input-nonempty))
1079 lean-input-user-translations '(("/" "/")))
1080 (lean-input-setup))
1081
1082(use-package haskell-mode
1083 :config
1084 (setq haskell-indentation-layout-offset 4
1085 haskell-indentation-left-offset 4
1086 flycheck-checker 'haskell-hlint
1087 flycheck-disabled-checkers '(haskell-stack-ghc haskell-ghc)))
1088
1089(use-package dante
1090 :after haskell-mode
1091 :commands dante-mode
1092 :hook (haskell-mode . dante-mode))
1093
1094(use-package hlint-refactor
1095 :after haskell-mode
1096 :bind (:map hlint-refactor-mode-map
1097 ("C-c l b" . hlint-refactor-refactor-buffer)
1098 ("C-c l r" . hlint-refactor-refactor-at-point))
1099 :hook (haskell-mode . hlint-refactor-mode))
1100
1101(use-package flycheck-haskell
1102 :after haskell-mode)
b57457b2 1103;; alternative: hs-lint https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el
41d290a2
AB
1104
1105(use-package sgml-mode
1106 :config
1107 (setq sgml-basic-offset 2))
1108
1109(use-package css-mode
1110 :config
1111 (setq css-indent-offset 2))
1112
1113(use-package web-mode
1114 :mode "\\.html\\'"
1115 :config
1116 (a/setq-every 2
1117 web-mode-code-indent-offset
1118 web-mode-css-indent-offset
1119 web-mode-markup-indent-offset))
1120
1121(use-package emmet-mode
1122 :after (:any web-mode css-mode sgml-mode)
1123 :bind* (("C-)" . emmet-next-edit-point)
1124 ("C-(" . emmet-prev-edit-point))
1125 :config
1126 (unbind-key "C-j" emmet-mode-keymap)
1127 (setq emmet-move-cursor-between-quotes t)
1128 :hook (web-mode css-mode html-mode sgml-mode))
1129
b57457b2
AB
1130(comment
1131 (use-package meghanada
1132 :bind
1133 (:map meghanada-mode-map
1134 (("C-M-o" . meghanada-optimize-import)
1135 ("C-M-t" . meghanada-import-all)))
1136 :hook (java-mode . meghanada-mode)))
1137
1138(comment
1139 (use-package treemacs
1140 :config (setq treemacs-never-persist t))
1141
1142 (use-package yasnippet
1143 :config
1144 ;; (yas-global-mode)
1145 )
1146
1147 (use-package lsp-mode
1148 :init (setq lsp-eldoc-render-all nil
1149 lsp-highlight-symbol-at-point nil)
1150 )
1151
1152 (use-package hydra)
1153
1154 (use-package company-lsp
1155 :after company
1156 :config
1157 (setq company-lsp-cache-candidates t
1158 company-lsp-async t))
1159
1160 (use-package lsp-ui
1161 :config
1162 (setq lsp-ui-sideline-update-mode 'point))
1163
1164 (use-package lsp-java
1165 :config
1166 (add-hook 'java-mode-hook
1167 (lambda ()
1168 (setq-local company-backends (list 'company-lsp))))
1169
1170 (add-hook 'java-mode-hook 'lsp-java-enable)
1171 (add-hook 'java-mode-hook 'flycheck-mode)
1172 (add-hook 'java-mode-hook 'company-mode)
1173 (add-hook 'java-mode-hook 'lsp-ui-mode))
1174
1175 (use-package dap-mode
1176 :after lsp-mode
1177 :config
1178 (dap-mode t)
1179 (dap-ui-mode t))
1180
1181 (use-package dap-java
1182 :after (lsp-java))
1183
1184 (use-package lsp-java-treemacs
1185 :after (treemacs)))
1186
1187(comment
1188 (use-package eclim
1189 :bind (:map eclim-mode-map ("S-SPC" . company-complete))
1190 :hook ((java-mode . eclim-mode)
1191 (eclim-mode . (lambda ()
1192 (make-local-variable 'company-idle-delay)
1193 (defvar company-idle-delay)
1194 ;; (setq company-idle-delay 0.7)
1195 (setq company-idle-delay nil))))
1196 :custom
1197 (eclim-auto-save nil)
1198 ;; (eclimd-default-workspace "~/src/eclipse-workspace-exp")
1199 (eclim-executable "~/.p2/pool/plugins/org.eclim_2.8.0/bin/eclim")
1200 (eclim-eclipse-dirs '("~/usr/eclipse/dsl-2018-09/eclipse"))))
1201
41d290a2
AB
1202(use-package geiser)
1203
1204(use-feature geiser-guile
1205 :config
1206 (setq geiser-guile-load-path "~/src/git/guix"))
1207
1208(use-package guix)
1209
b57457b2
AB
1210(comment
1211 (use-package auctex
1212 :custom
1213 (font-latex-fontify-sectioning 'color)))
1214
99473567
AB
1215(use-package go-mode)
1216
b57457b2
AB
1217\f
1218;;; Theme
1219
1220(add-to-list 'custom-theme-load-path "~/.emacs.d/lisp")
1221(load-theme 'tangomod t)
1222
1223(use-package smart-mode-line
1224 :commands (sml/apply-theme)
1225 :demand
1226 :config
26906e22
AB
1227 (sml/setup)
1228 (smart-mode-line-enable))
b57457b2
AB
1229
1230(use-package doom-themes)
1231
1232(defvar a/org-mode-font-lock-keywords
1233 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
1234 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
1235 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
1236 (4 '(:foreground "#c5c8c6") t)))) ; title
1237
1238(defun a/lights-on ()
1239 "Enable my favourite light theme."
1240 (interactive)
1241 (mapc #'disable-theme custom-enabled-themes)
1242 (load-theme 'tangomod t)
1243 (sml/apply-theme 'automatic)
1244 (font-lock-remove-keywords
1245 'org-mode a/org-mode-font-lock-keywords))
1246
1247(defun a/lights-off ()
1248 "Go dark."
1249 (interactive)
1250 (mapc #'disable-theme custom-enabled-themes)
1251 (load-theme 'doom-tomorrow-night t)
1252 (sml/apply-theme 'automatic)
1253 (font-lock-add-keywords
1254 'org-mode a/org-mode-font-lock-keywords t))
1255
1256(bind-keys
1257 ("s-t d" . a/lights-off)
1258 ("s-t l" . a/lights-on))
1259
1260\f
1261;;; Emacs enhancements & auxiliary packages
1262
41d290a2
AB
1263(use-feature man
1264 :config (setq Man-width 80))
1265
1266(use-package which-key
1267 :defer 0.4
54209e74 1268 :delight
41d290a2
AB
1269 :config
1270 (which-key-add-key-based-replacements
1271 ;; prefixes for global prefixes and minor modes
1272 "C-c @" "outline"
1273 "C-c !" "flycheck"
1274 "C-c 8" "typo"
1275 "C-c 8 -" "typo/dashes"
1276 "C-c 8 <" "typo/left-brackets"
1277 "C-c 8 >" "typo/right-brackets"
1278 "C-x 8" "unicode"
1279 "C-x a" "abbrev/expand"
1280 "C-x r" "rectangle/register/bookmark"
1281 "C-x v" "version control"
1282 ;; prefixes for my personal bindings
1283 "C-c a" "applications"
1284 "C-c a e" "erc"
1285 "C-c a o" "org"
1286 "C-c a s" "shells"
1287 "C-c p" "package-management"
1288 ;; "C-c p e" "package-management/epkg"
1289 "C-c p s" "straight.el"
1290 "C-c psa" "all"
1291 "C-c psp" "package"
1292 "C-c c" "compile-and-comments"
1293 "C-c e" "eval"
1294 "C-c f" "files"
1295 "C-c F" "frames"
1296 "C-S-h" "help(ful)"
1297 "C-c m" "multiple-cursors"
1298 "C-c P" "projectile"
1299 "C-c P s" "projectile/search"
1300 "C-c P x" "projectile/execute"
1301 "C-c P 4" "projectile/other-window"
1302 "C-c q" "boxquote"
1303 "s-g" "magit"
1304 "s-o" "outline"
1305 "s-t" "themes")
1306
1307 ;; prefixes for major modes
1308 (which-key-add-major-mode-key-based-replacements 'message-mode
1309 "C-c f" "footnote")
1310 (which-key-add-major-mode-key-based-replacements 'org-mode
1311 "C-c C-v" "org-babel")
1312 (which-key-add-major-mode-key-based-replacements 'web-mode
1313 "C-c C-a" "web/attributes"
1314 "C-c C-b" "web/blocks"
1315 "C-c C-d" "web/dom"
1316 "C-c C-e" "web/element"
1317 "C-c C-t" "web/tags")
1318
1319 (which-key-mode)
1320 :custom
1321 (which-key-add-column-padding 5)
1322 (which-key-max-description-length 32))
1323
b57457b2 1324(use-package crux ; results in Waiting for git... [2 times]
41d290a2
AB
1325 :defer 0.4
1326 :bind (("C-c b k" . crux-kill-other-buffers)
1327 ("C-c d" . crux-duplicate-current-line-or-region)
1328 ("C-c D" . crux-duplicate-and-comment-current-line-or-region)
1329 ("C-c f c" . crux-copy-file-preserve-attributes)
1330 ("C-c f d" . crux-delete-file-and-buffer)
1331 ("C-c f r" . crux-rename-file-and-buffer)
1332 ("C-c j" . crux-top-join-line)
1333 ("C-S-j" . crux-top-join-line)))
1334
1335(use-package mwim
1336 :bind (("C-a" . mwim-beginning-of-code-or-line)
1337 ("C-e" . mwim-end-of-code-or-line)
1338 ("<home>" . mwim-beginning-of-line-or-code)
1339 ("<end>" . mwim-end-of-line-or-code)))
1340
1341(use-package projectile
26906e22 1342 :defer 0.5
41d290a2
AB
1343 :bind-keymap ("C-c P" . projectile-command-map)
1344 :config
1345 (projectile-mode)
1346
26906e22
AB
1347 (defun a/projectile-mode-line-fun ()
1348 "Report project name and type in the modeline."
1349 (let ((project-name (projectile-project-name))
1350 (project-type (projectile-project-type)))
1351 (format "%s%s"
1352 projectile-mode-line-prefix
1353 (if project-type
1354 (format ":%s" project-type)
1355 ""))))
1356 (setq projectile-mode-line-function 'a/projectile-mode-line-fun)
1357
41d290a2
AB
1358 (defun my-projectile-invalidate-cache (&rest _args)
1359 ;; ignore the args to `magit-checkout'
1360 (projectile-invalidate-cache nil))
1361
1362 (eval-after-load 'magit-branch
1363 '(progn
1364 (advice-add 'magit-checkout
1365 :after #'my-projectile-invalidate-cache)
1366 (advice-add 'magit-branch-and-checkout
1367 :after #'my-projectile-invalidate-cache)))
54209e74
AB
1368 :custom
1369 (projectile-completion-system 'ivy)
1370 (projectile-mode-line-prefix " proj"))
41d290a2
AB
1371
1372(use-package helpful
1373 :defer 0.6
1374 :bind
1375 (("C-S-h c" . helpful-command)
1376 ("C-S-h f" . helpful-callable) ; helpful-function
1377 ("C-S-h v" . helpful-variable)
1378 ("C-S-h k" . helpful-key)
1379 ("C-S-h p" . helpful-at-point)))
1380
1381(use-package unkillable-scratch
1382 :defer 0.6
1383 :config
1384 (unkillable-scratch 1)
1385 :custom
1386 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1387
b57457b2
AB
1388;; ,----
1389;; | make pretty boxed quotes like this
1390;; `----
41d290a2
AB
1391(use-package boxquote
1392 :defer 0.6
1393 :bind
1394 (:prefix-map a/boxquote-prefix-map
1395 :prefix "C-c q"
1396 ("b" . boxquote-buffer)
1397 ("B" . boxquote-insert-buffer)
1398 ("d" . boxquote-defun)
1399 ("F" . boxquote-insert-file)
1400 ("hf" . boxquote-describe-function)
1401 ("hk" . boxquote-describe-key)
1402 ("hv" . boxquote-describe-variable)
1403 ("hw" . boxquote-where-is)
1404 ("k" . boxquote-kill)
1405 ("p" . boxquote-paragraph)
1406 ("q" . boxquote-boxquote)
1407 ("r" . boxquote-region)
1408 ("s" . boxquote-shell-command)
1409 ("t" . boxquote-text)
1410 ("T" . boxquote-title)
1411 ("u" . boxquote-unbox)
1412 ("U" . boxquote-unbox-region)
1413 ("y" . boxquote-yank)
1414 ("M-q" . boxquote-fill-paragraph)
1415 ("M-w" . boxquote-kill-ring-save)))
1416
1417(use-package orgalist
b57457b2 1418 ;; http://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00007.html
41d290a2
AB
1419 :disabled t
1420 :after message
1421 :hook (message-mode . orgalist-mode))
1422
b57457b2 1423;; easily type pretty quotes & other typography, like ‘’“”-–—«»‹›
41d290a2
AB
1424(use-package typo
1425 :defer 0.5
54209e74 1426 :delight " typo"
41d290a2
AB
1427 :config
1428 (typo-global-mode 1)
54209e74 1429 :hook ((text-mode erc-mode) . typo-mode))
41d290a2 1430
b57457b2 1431;; highlight TODOs in buffers
41d290a2
AB
1432(use-package hl-todo
1433 :defer 0.5
1434 :config
1435 (global-hl-todo-mode))
1436
1437(use-package shrink-path
1438 :defer 0.5
1439 :after eshell
1440 :config
1441 (defvar user-@-host (concat (user-login-name) "@" (system-name) " "))
1442 (defun +eshell/prompt ()
1443 (let ((base/dir (shrink-path-prompt default-directory)))
1444 (concat (propertize user-@-host 'face 'default)
1445 (propertize (car base/dir)
1446 'face 'font-lock-comment-face)
1447 (propertize (cdr base/dir)
1448 'face 'font-lock-constant-face)
1449 (propertize "> " 'face 'default))))
1450 (setq eshell-prompt-regexp (concat user-@-host ".*> ")
1451 eshell-prompt-function #'+eshell/prompt))
1452
1453(use-package eshell-up
1454 :after eshell
1455 :commands eshell-up)
1456
1457(use-package multi-term
1458 :defer 0.6
fb078e63
AB
1459 :bind (("C-c a s m m" . multi-term)
1460 ("C-c a s m d" . multi-term-dedicated-toggle)
1461 ("C-c a s m p" . multi-term-prev)
1462 ("C-c a s m n" . multi-term-next)
41d290a2 1463 :map term-mode-map
0af1e91a 1464 ("C-c C-j" . term-char-mode))
41d290a2 1465 :config
96c704d7
AB
1466 (setq multi-term-program "screen"
1467 multi-term-program-switches (concat "-c"
1468 (getenv "XDG_CONFIG_HOME")
1469 "/screen/screenrc")
41d290a2
AB
1470 ;; TODO: add separate bindings for connecting to existing
1471 ;; session vs. always creating a new one
1472 multi-term-dedicated-select-after-open-p t
1473 multi-term-dedicated-window-height 20
1474 multi-term-dedicated-max-window-height 30
1475 term-bind-key-alist
1476 '(("C-c C-c" . term-interrupt-subjob)
1477 ("C-c C-e" . term-send-esc)
0af1e91a 1478 ("C-c C-j" . term-line-mode)
41d290a2 1479 ("C-k" . kill-line)
fb078e63
AB
1480 ;; ("C-y" . term-paste)
1481 ("C-y" . term-send-raw)
41d290a2
AB
1482 ("M-f" . term-send-forward-word)
1483 ("M-b" . term-send-backward-word)
1484 ("M-p" . term-send-up)
1485 ("M-n" . term-send-down)
fb078e63
AB
1486 ("M-j" . term-send-raw-meta)
1487 ("M-y" . term-send-raw-meta)
1488 ("M-/" . term-send-raw-meta)
1489 ("M-0" . term-send-raw-meta)
1490 ("M-1" . term-send-raw-meta)
1491 ("M-2" . term-send-raw-meta)
1492 ("M-3" . term-send-raw-meta)
1493 ("M-4" . term-send-raw-meta)
1494 ("M-5" . term-send-raw-meta)
1495 ("M-6" . term-send-raw-meta)
1496 ("M-7" . term-send-raw-meta)
1497 ("M-8" . term-send-raw-meta)
1498 ("M-9" . term-send-raw-meta)
41d290a2
AB
1499 ("<C-backspace>" . term-send-backward-kill-word)
1500 ("<M-DEL>" . term-send-backward-kill-word)
1501 ("M-d" . term-send-delete-word)
1502 ("M-," . term-send-raw)
1503 ("M-." . comint-dynamic-complete))
1504 term-unbind-key-alist
fb078e63
AB
1505 '("C-z" "C-x" "C-c" "C-h"
1506 ;; "C-y"
1507 "<ESC>")))
41d290a2
AB
1508
1509(use-package page-break-lines
b57457b2 1510 :defer 0.5
54209e74 1511 :delight " pgln"
2f5d8190
AB
1512 :custom
1513 (page-break-lines-max-width fill-column)
41d290a2
AB
1514 :config
1515 (global-page-break-lines-mode))
1516
1517(use-package expand-region
1518 :bind ("C-=" . er/expand-region))
1519
1520(use-package multiple-cursors
1521 :bind
1522 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
1523 (:prefix-map a/mc-prefix-map
1524 :prefix "C-c m"
1525 ("c" . mc/edit-lines)
1526 ("n" . mc/mark-next-like-this)
1527 ("p" . mc/mark-previous-like-this)
1528 ("a" . mc/mark-all-like-this))))
1529
1530(use-package forge
1531 :after magit
1532 :demand)
1533
1534(use-package yasnippet
1535 :defer 0.6
1536 :config
1537 (defconst yas-verbosity-cur yas-verbosity)
1538 (setq yas-verbosity 2)
476f6228 1539 (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
41d290a2
AB
1540 (yas-reload-all)
1541 (setq yas-verbosity yas-verbosity-cur)
476f6228 1542 (yas-global-mode))
41d290a2
AB
1543
1544(use-package debbugs
1545 :straight (debbugs
1546 :host github
1547 :repo "emacs-straight/debbugs"
1548 :files (:defaults "Debbugs.wsdl")))
1549
1550(use-package org-ref
1551 :init
1552 (a/setq-every '("~/usr/org/references.bib")
1553 reftex-default-bibliography
1554 org-ref-default-bibliography)
1555 (setq
1556 org-ref-bibliography-notes "~/usr/org/notes.org"
1557 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1558
109a3e04
AB
1559;; ugh, temporary (still better than using the proprietary web app)
1560(use-package slack
1561 :commands (slack-start)
1562 :init
1563 (eval-when-compile ; silence the byte-compiler
1564 (defvar url-http-data nil)
1565 (defvar url-http-extra-headers nil)
1566 (defvar url-http-method nil)
1567 (defvar url-callback-function nil)
1568 (defvar url-callback-arguments nil)
1569 (defvar oauth--token-data nil))
1570 (setq slack-buffer-emojify t
1571 slack-prefer-current-team t)
1572 :config
1573 (slack-register-team
1574 :name "nday-students"
1575 :default t
1576 :token nday-students-token
1577 :subscribed-channels '(general)
1578 :full-and-display-names t)
b1ed9ee8
AB
1579 (with-eval-after-load 'swiper
1580 (add-to-list 'swiper-font-lock-exclude 'slack-message-buffer-mode t))
109a3e04
AB
1581 (setq lui-time-stamp-format "[%Y-%m-%d %H:%M:%S]"
1582 lui-time-stamp-only-when-changed-p t
1583 lui-time-stamp-position 'right)
1584 :bind
1585 (("C-c s s" . slack-start)
1586 ("C-c s u" . slack-select-unread-rooms)
1587 ("C-c s b" . slack-select-rooms)
1588 ("C-c s t" . slack-change-current-team)
1589 ("C-c s c" . slack-ws-close)
1590 :map slack-mode-map
1591 ("M-p" . slack-buffer-goto-prev-message)
1592 ("M-n" . slack-buffer-goto-next-message)
1593 ("C-c e" . slack-message-edit)
1594 ("C-c k" . slack-message-delete)
1595 ("C-c C-k" . slack-channel-leave)
1596 ("C-c r a" . slack-message-add-reaction)
1597 ("C-c r r" . slack-message-remove-reaction)
1598 ("C-c r s" . slack-message-show-reaction-users)
1599 ("C-c p l" . slack-room-pins-list)
1600 ("C-c p a" . slack-message-pins-add)
1601 ("C-c p r" . slack-message-pins-remove)
1602 ("@" . slack-message-embed-mention)
1603 ("#" . slack-message-embed-channel)))
1604
41d290a2
AB
1605(use-package alert
1606 :commands (alert)
83a17ce5 1607 :init (setq alert-default-style 'notifications))
41d290a2 1608
2f5d8190
AB
1609;; (use-package fill-column-indicator)
1610
b46ed2ba
AB
1611(use-package emojify
1612 :hook (erc-mode . emojify-mode))
1613
b57457b2
AB
1614\f
1615;;; Email (with Gnus)
1616
41d290a2
AB
1617(defvar a/maildir (expand-file-name "~/mail/"))
1618(with-eval-after-load 'recentf
1619 (add-to-list 'recentf-exclude a/maildir))
1620
1621(setq
1622 a/gnus-init-file (no-littering-expand-etc-file-name "gnus")
1623 mail-user-agent 'gnus-user-agent
1624 read-mail-command 'gnus)
1625
1626(use-feature gnus
1627 :bind (("s-m" . gnus)
1628 ("s-M" . gnus-unplugged))
1629 :init
1630 (setq
1631 gnus-select-method '(nnnil "")
1632 gnus-secondary-select-methods
1633 '((nnimap "amin"
1634 (nnimap-stream plain)
1635 (nnimap-address "127.0.0.1")
1636 (nnimap-server-port 143)
1637 (nnimap-authenticator plain)
cad07800 1638 (nnimap-user "amin@shemshak.local"))
2e9074a4
AB
1639 (nnimap "gnu"
1640 (nnimap-stream plain)
1641 (nnimap-address "127.0.0.1")
1642 (nnimap-server-port 143)
1643 (nnimap-authenticator plain)
7f88c321
AB
1644 (nnimap-user "bandali@gnu.local")
1645 (nnimap-inbox "INBOX")
1646 (nnimap-split-methods 'nnimap-split-fancy)
1647 (nnimap-split-fancy (|
29e42dc1 1648 ;; (: gnus-registry-split-fancy-with-parent)
7f88c321
AB
1649 ;; (: gnus-group-split-fancy "INBOX" t "INBOX")
1650 ;; gnu
1651 (list ".*emacs-devel.gnu.org" "l.gnu.emacs.devel")
1652 (list ".*help-gnu-emacs.gnu.org" "l.gnu.emacs.help")
1653 (list ".*info-gnu-emacs.gnu.org" "l.gnu.emacs.info")
1654 (list ".*emacs-orgmode.gnu.org" "l.gnu.emacs.orgmode")
40b9eac1 1655 (list ".*emacs-tangents.gnu.org" "l.gnu.emacs.tangents")
7f88c321
AB
1656 (list ".*emacsconf-discuss.gnu.org" "l.gnu.emacsconf.discuss")
1657 (list ".*fencepost-users.gnu.org" "l.gnu.fencepost.users")
1658 (list ".*gnunet-developers.gnu.org" "l.gnu.gnunet.developers")
1659 (list ".*help-gnunet.gnu.org" "l.gnu.gnunet.help")
1660 (list ".*bug-gnuzilla.gnu.org" "l.gnu.gnuzilla.bug")
1661 (list ".*gnuzilla-dev.gnu.org" "l.gnu.gnuzilla.dev")
1662 (list ".*guile-devel.gnu.org" "l.gnu.guile.devel")
29e42dc1 1663 (list ".*guile-user.gnu.org" "l.gnu.guile.user")
7f88c321 1664 (list ".*guix-devel.gnu.org" "l.gnu.guix.devel")
837a23a5 1665 (list ".*help-guix.gnu.org" "l.gnu.guix.help")
7f88c321 1666 (list ".*info-guix.gnu.org" "l.gnu.guix.info")
6f25cef1
AB
1667 (list ".*savannah-hackers-public.gnu.org" "l.gnu.savannah.hackers.public")
1668 (list ".*savannah-users.gnu.org" "l.gnu.savannah.users")
7f88c321
AB
1669 (list ".*www-commits.gnu.org" "l.gnu.www.commits")
1670 (list ".*www-discuss.gnu.org" "l.gnu.www.discuss")
9747f63f
AB
1671 ;; webmasters
1672 (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters")
7f88c321
AB
1673 ;; haskell
1674 (list ".*haskell-art.we.lurk.org" "l.haskell.art")
1675 (list ".*haskell-cafe.haskell.org" "l.haskell.cafe")
1676 ;; other
1677 (list ".*deepspec.lists.cs.princeton.edu" "l.deepspec")
1678 (list ".*notmuch.notmuchmail.org" "l.notmuch")
1679 (list ".*dev.lists.parabola.nu" "l.parabola.dev")
1680 ;; *@lists.sr.ht
1681 (list ".*~bandali/public-inbox@lists.sr.ht" "l.~bandali.public-inbox")
1682 (list ".*~sircmpwn/sr.ht-admins@lists.sr.ht" "l.~sircmpwn.srht.admins")
1683 (list ".*~sircmpwn/sr.ht-announce@lists.sr.ht" "l.~sircmpwn.srht.announce")
1684 (list ".*~sircmpwn/sr.ht-dev@lists.sr.ht" "l.~sircmpwn.srht.dev")
1685 (list ".*~sircmpwn/sr.ht-discuss@lists.sr.ht" "l.~sircmpwn.srht.discuss")
1686 "INBOX")))
727d14d3 1687 (nnimap "uw"
41d290a2
AB
1688 (nnimap-stream plain)
1689 (nnimap-address "127.0.0.1")
1690 (nnimap-server-port 143)
1691 (nnimap-authenticator plain)
f0d99991
AB
1692 (nnimap-user "abandali@uw.local")
1693 (nnimap-inbox "INBOX")
1694 (nnimap-split-methods 'nnimap-split-fancy)
1695 (nnimap-split-fancy (|
29e42dc1 1696 ;; (: gnus-registry-split-fancy-with-parent)
f0d99991 1697 ;; se463-s19
cec07e02
AB
1698 ("subject" "\\(SE\\s-?463\\|Deliverable\\)" "course.se463-s19")
1699 (from "\\(SE\\s-?463\\|Gema\\|Hemant\\|Davood\\|Camilo\\|Reza\\|Michael\\|Sandy\\)" "course.se463-s19")
f0d99991
AB
1700 ;; catch-all
1701 "INBOX")))
727d14d3 1702 (nnimap "csc"
41d290a2
AB
1703 (nnimap-stream plain)
1704 (nnimap-address "127.0.0.1")
1705 (nnimap-server-port 143)
1706 (nnimap-authenticator plain)
727d14d3 1707 (nnimap-user "abandali@csc.uw.local")))
41d290a2
AB
1708 gnus-message-archive-group "nnimap+amin:Sent"
1709 gnus-parameters
74fd778e 1710 '(("l\\.deepspec"
41d290a2 1711 (to-address . "deepspec@lists.cs.princeton.edu")
778202b8
AB
1712 (to-list . "deepspec@lists.cs.princeton.edu")
1713 (list-identifier . "\\[deepspec\\]"))
74fd778e
AB
1714 ("l\\.gnu\\.emacs\\.devel"
1715 (to-address . "emacs-devel@gnu.org")
1716 (to-list . "emacs-devel@gnu.org"))
1717 ("l\\.gnu\\.emacs\\.help"
1718 (to-address . "help-gnu-emacs@gnu.org")
1719 (to-list . "help-gnu-emacs@gnu.org"))
1720 ("l\\.gnu\\.emacs\\.info"
1721 (to-address . "info-gnu-emacs@gnu.org")
1722 (to-list . "info-gnu-emacs@gnu.org"))
1723 ("l\\.gnu\\.emacs\\.orgmode"
41d290a2 1724 (to-address . "emacs-orgmode@gnu.org")
778202b8
AB
1725 (to-list . "emacs-orgmode@gnu.org")
1726 (list-identifier . "\\[O\\]"))
40b9eac1
AB
1727 ("l\\.gnu\\.emacs\\.tangents"
1728 (to-address . "emacs-tangents@gnu.org")
1729 (to-list . "emacs-tangents@gnu.org"))
74fd778e 1730 ("l\\.gnu\\.emacsconf\\.discuss"
41d290a2
AB
1731 (to-address . "emacsconf-discuss@gnu.org")
1732 (to-list . "emacsconf-discuss@gnu.org"))
74fd778e 1733 ("l\\.gnu\\.fencepost\\.users"
41d290a2 1734 (to-address . "fencepost-users@gnu.org")
778202b8
AB
1735 (to-list . "fencepost-users@gnu.org")
1736 (list-identifier . "\\[Fencepost-users\\]"))
74fd778e 1737 ("l\\.gnu\\.gnunet\\.developers"
41d290a2 1738 (to-address . "gnunet-developers@gnu.org")
778202b8
AB
1739 (to-list . "gnunet-developers@gnu.org")
1740 (list-identifier . "\\[GNUnet-developers\\]"))
74fd778e
AB
1741 ("l\\.gnu\\.gnunet\\.help"
1742 (to-address . "help-gnunet@gnu.org")
1743 (to-list . "help-gnunet@gnu.org")
1744 (list-identifier . "\\[Help-gnunet\\]"))
1745 ("l\\.gnu\\.gnuzilla\\.bug"
1746 (to-address . "bug-gnuzilla@gnu.org")
1747 (to-list . "bug-gnuzilla@gnu.org")
1748 (list-identifier . "\\[Bug-gnuzilla\\]"))
1749 ("l\\.gnu\\.gnuzilla\\.dev"
1750 (to-address . "gnuzilla-dev@gnu.org")
1751 (to-list . "gnuzilla-dev@gnu.org")
1752 (list-identifier . "\\[Gnuzilla-dev\\]"))
1753 ("l\\.gnu\\.guile\\.devel"
41d290a2
AB
1754 (to-address . "guile-devel@gnu.org")
1755 (to-list . "guile-devel@gnu.org"))
29e42dc1
AB
1756 ("l\\.gnu\\.guile\\.user"
1757 (to-address . "guile-user@gnu.org")
1758 (to-list . "guile-user@gnu.org"))
74fd778e 1759 ("l\\.gnu\\.guix\\.devel"
41d290a2
AB
1760 (to-address . "guix-devel@gnu.org")
1761 (to-list . "guix-devel@gnu.org"))
837a23a5
AB
1762 ("l\\.gnu\\.guix\\.help"
1763 (to-address . "help-guix@gnu.org")
1764 (to-list . "help-guix@gnu.org"))
74fd778e
AB
1765 ("l\\.gnu\\.guix\\.info"
1766 (to-address . "info-guix@gnu.org")
1767 (to-list . "info-guix@gnu.org"))
6f25cef1
AB
1768 ("l\\.gnu\\.savannah\\.hackers\\.public"
1769 (to-address . "savannah-hackers-public@gnu.org")
1770 (to-list . "savannah-hackers-public@gnu.org"))
1771 ("l\\.gnu\\.savannah\\.users"
1772 (to-address . "savannah-users@gnu.org")
1773 (to-list . "savannah-users@gnu.org"))
74fd778e
AB
1774 ("l\\.gnu\\.www\\.commits"
1775 (to-address . "www-commits@gnu.org")
1776 (to-list . "www-commits@gnu.org"))
1777 ("l\\.gnu\\.www\\.discuss"
1778 (to-address . "www-discuss@gnu.org")
1779 (to-list . "www-discuss@gnu.org"))
1780 ("l\\.haskell\\.art"
41d290a2 1781 (to-address . "haskell-art@we.lurk.org")
778202b8
AB
1782 (to-list . "haskell-art@we.lurk.org")
1783 (list-identifier . "\\[haskell-art\\]"))
74fd778e 1784 ("l\\.haskell\\.cafe"
41d290a2 1785 (to-address . "haskell-cafe@haskell.org")
778202b8
AB
1786 (to-list . "haskell-cafe@haskell.org")
1787 (list-identifier . "\\[Haskell-cafe\\]"))
74fd778e 1788 ("l\\.notmuch"
41d290a2
AB
1789 (to-address . "notmuch@notmuchmail.org")
1790 (to-list . "notmuch@notmuchmail.org"))
74fd778e 1791 ("l\\.parabola\\.dev"
41d290a2 1792 (to-address . "dev@lists.parabola.nu")
778202b8
AB
1793 (to-list . "dev@lists.parabola.nu")
1794 (list-identifier . "\\[Dev\\]"))
74fd778e 1795 ("l\\.~bandali\\.public-inbox"
41d290a2
AB
1796 (to-address . "~bandali/public-inbox@lists.sr.ht")
1797 (to-list . "~bandali/public-inbox@lists.sr.ht"))
74fd778e 1798 ("l\\.~sircmpwn\\.srht\\.admins"
41d290a2
AB
1799 (to-address . "~sircmpwn/sr.ht-admins@lists.sr.ht")
1800 (to-list . "~sircmpwn/sr.ht-admins@lists.sr.ht"))
74fd778e 1801 ("l\\.~sircmpwn\\.srht\\.announce"
41d290a2
AB
1802 (to-address . "~sircmpwn/sr.ht-announce@lists.sr.ht")
1803 (to-list . "~sircmpwn/sr.ht-announce@lists.sr.ht"))
74fd778e 1804 ("l\\.~sircmpwn\\.srht\\.dev"
41d290a2
AB
1805 (to-address . "~sircmpwn/sr.ht-dev@lists.sr.ht")
1806 (to-list . "~sircmpwn/sr.ht-dev@lists.sr.ht"))
74fd778e 1807 ("l\\.~sircmpwn\\.srht\\.discuss"
41d290a2
AB
1808 (to-address . "~sircmpwn/sr.ht-discuss@lists.sr.ht")
1809 (to-list . "~sircmpwn/sr.ht-discuss@lists.sr.ht"))
74fd778e
AB
1810 ("webmasters"
1811 (to-address . "webmasters@gnu.org")
1812 (to-list . "webmasters@gnu.org"))
41d290a2
AB
1813 ("gnu.*"
1814 (gcc-self . t))
1815 ("gnu\\."
262483ba
AB
1816 (subscribed . t))
1817 ("nnimap\\+uw:.*"
1818 (gcc-self . t)))
41d290a2
AB
1819 gnus-large-newsgroup 50
1820 gnus-home-directory (no-littering-expand-var-file-name "gnus/")
1821 gnus-directory (concat gnus-home-directory "news/")
1822 message-directory (concat gnus-home-directory "mail/")
1823 nndraft-directory (concat gnus-home-directory "drafts/")
1824 gnus-save-newsrc-file nil
1825 gnus-read-newsrc-file nil
1826 gnus-interactive-exit nil
1827 gnus-gcc-mark-as-read t)
1828 :config
1829 (require 'ebdb)
1830 (require 'ebdb-mua)
1831 (require 'ebdb-gnus)
1832
29e42dc1 1833 ;; (gnus-registry-initialize)
7f88c321 1834
41d290a2
AB
1835 (with-eval-after-load 'recentf
1836 (add-to-list 'recentf-exclude gnus-home-directory)))
1837
1838(use-feature gnus-art
1839 :config
1840 (setq
1841 gnus-visible-headers
1842 (concat gnus-visible-headers "\\|^List-Id:\\|^X-RT-Originator:\\|^User-Agent:")
1843 gnus-sorted-header-list
1844 '("^From:" "^Subject:" "^Summary:" "^Keywords:"
1845 "^Followup-To:" "^To:" "^Cc:" "X-RT-Originator"
1846 "^Newsgroups:" "List-Id:" "^Organization:"
1847 "^User-Agent:" "^Date:")
1848 ;; local-lapsed article dates
1849 ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11
1850 gnus-article-date-headers '(user-defined)
1851 gnus-article-time-format
1852 (lambda (time)
1853 (let* ((date (format-time-string "%a, %d %b %Y %T %z" time))
1854 (local (article-make-date-line date 'local))
1855 (combined-lapsed (article-make-date-line date
1856 'combined-lapsed))
1857 (lapsed (progn
1858 (string-match " (.+" combined-lapsed)
1859 (match-string 0 combined-lapsed))))
1860 (concat local lapsed))))
1861 (bind-keys
1862 :map gnus-article-mode-map
1863 ("M-L" . org-store-link)))
1864
1865(use-feature gnus-sum
1866 :bind (:map gnus-summary-mode-map
1867 :prefix-map a/gnus-summary-prefix-map
1868 :prefix "v"
1869 ("r" . gnus-summary-reply)
1870 ("w" . gnus-summary-wide-reply)
1871 ("v" . gnus-summary-show-raw-article))
1872 :config
1873 (bind-keys
1874 :map gnus-summary-mode-map
1875 ("M-L" . org-store-link))
1876 :hook (gnus-summary-mode . a/no-mouse-autoselect-window))
1877
1878(use-feature gnus-msg
1879 :config
4d19e255 1880 (defvar a/gnu-signature "Amin Bandali | GNU Webmaster
18f2d691 1881https://www.gnu.org/people/webmeisters.html#bandali
4d19e255 1882GPG Key: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103")
18f2d691
AB
1883 (defvar a/uw-signature "Amin Bandali | https://aminb.org
1884Master of Mathematics Student
4d19e255 1885Cheriton School of Computer Science
18f2d691 1886University of Waterloo")
4d19e255 1887 (defvar a/csc-signature "Amin Bandali | Termcom, CSC
18f2d691 1888https://csclub.uwaterloo.ca/~abandali")
41d290a2
AB
1889 (setq gnus-posting-styles
1890 '((".*"
cad07800 1891 (address "amin@shemshak.org")
41d290a2
AB
1892 (body "\nBest,\n")
1893 (eval (setq a/message-cite-say-hi t)))
7f88c321 1894 ("nnimap\\+gnu:.*"
41d290a2 1895 (address "bandali@gnu.org")
4d19e255 1896 (signature a/gnu-signature)
41d290a2
AB
1897 (eval (set (make-local-variable 'message-user-fqdn) "fencepost.gnu.org")))
1898 ((header "subject" "ThankCRM")
1899 (to "webmasters-comment@gnu.org")
55495e2f 1900 (body "")
41d290a2 1901 (eval (setq a/message-cite-say-hi nil)))
63c1969d 1902 ("nnimap\\+uw:.*"
4d19e255
AB
1903 (address "abandali@uwaterloo.ca")
1904 (signature a/uw-signature))
262483ba 1905 ("nnimap\\+uw:INBOX"
63c1969d
AB
1906 (gcc "\"nnimap+uw:Sent Items\""))
1907 ("nnimap\\+csc:.*"
41d290a2 1908 (address "abandali@csclub.uwaterloo.ca")
4d19e255 1909 (signature a/csc-signature)
63c1969d 1910 (gcc "nnimap+csc:Sent")))))
41d290a2
AB
1911
1912(use-feature gnus-topic
1913 :hook (gnus-group-mode . gnus-topic-mode)
1914 :config (setq gnus-topic-line-format "%i[ %A: %(%{%n%}%) ]%v\n"))
1915
1916(use-feature gnus-agent
1917 :config
1918 (setq gnus-agent-synchronize-flags 'ask)
1919 :hook (gnus-group-mode . gnus-agent-mode))
1920
1921(use-feature gnus-group
1922 :config
1923 (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)"))
1924
082360a8
AB
1925(comment
1926 ;; problematic with ebdb's popup, *EBDB-Gnus*
1927 (use-feature gnus-win
1928 :config
1929 (setq gnus-use-full-window nil)))
f485f78e 1930
348511ef
AB
1931(use-feature gnus-dired
1932 :commands gnus-dired-mode
1933 :init
1934 (add-hook 'dired-mode-hook 'gnus-dired-mode))
1935
41d290a2
AB
1936(use-feature mm-decode
1937 :config
1938 (setq mm-discouraged-alternatives '("text/html" "text/richtext")))
1939
1940(use-feature sendmail
1941 :config
8f8d4c32 1942 (setq sendmail-program (executable-find "msmtp")
41d290a2
AB
1943 ;; message-sendmail-extra-arguments '("-v" "-d")
1944 mail-specify-envelope-from t
1945 mail-envelope-from 'header))
1946
1947(use-feature message
1948 :config
1949 ;; redefine for a simplified In-Reply-To header
1950 ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67)
1951 (defun message-make-in-reply-to ()
1952 "Return the In-Reply-To header for this message."
1953 (when message-reply-headers
1954 (let ((from (mail-header-from message-reply-headers))
1955 (msg-id (mail-header-id message-reply-headers)))
1956 (when from
1957 msg-id))))
1958
1959 (defconst a/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:")
1960 (defconst message-cite-style-bandali
1961 '((message-cite-function 'message-cite-original)
1962 (message-citation-line-function 'message-insert-formatted-citation-line)
1963 (message-cite-reply-position 'traditional)
1964 (message-yank-prefix "> ")
1965 (message-yank-cited-prefix ">")
1966 (message-yank-empty-prefix ">")
1967 (message-citation-line-format
1968 (if a/message-cite-say-hi
1969 (concat "Hi %F,\n\n" a/message-cite-style-format)
1970 a/message-cite-style-format)))
1971 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
1972 (setq ;; message-cite-style 'message-cite-style-bandali
1973 message-kill-buffer-on-exit t
1974 message-send-mail-function 'message-send-mail-with-sendmail
1975 message-sendmail-envelope-from 'header
1976 message-subscribed-address-functions
1977 '(gnus-find-subscribed-addresses)
1978 message-dont-reply-to-names
cad07800 1979 "\\(\\(amin@\\(shemshak\\|bndl\\)\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|aminb?\\|mab\\)@gnu\\.org\\)\\|\\(a\\(min\\.\\)?bandali@uwaterloo\\.ca\\)\\|\\(abandali@csclub\\.uwaterloo\\.ca\\)\\)")
41d290a2
AB
1980 (require 'company-ebdb)
1981 :hook (;; (message-setup . mml-secure-message-sign-pgpmime)
1982 (message-mode . flyspell-mode)
1983 (message-mode . (lambda ()
1984 ;; (setq fill-column 65
1985 ;; message-fill-column 65)
1986 (make-local-variable 'company-idle-delay)
1987 (setq company-idle-delay 0.2))))
1988 ;; :custom-face
1989 ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
1990 ;; (message-header-to ((t (:foreground "#111" :weight normal))))
1991 ;; (message-header-cc ((t (:foreground "#333" :weight normal))))
1992 )
1993
54209e74
AB
1994(use-feature mml
1995 :delight " mml")
1996
1997(use-feature mml-sec
1998 :custom
1999 (mml-secure-openpgp-encrypt-to-self t)
2000 (mml-secure-openpgp-sign-with-sender t))
41d290a2
AB
2001
2002(use-feature footnote
2003 :after message
2004 ;; :config
2005 ;; (setq footnote-start-tag ""
2006 ;; footnote-end-tag ""
2007 ;; footnote-style 'unicode)
2008 :bind
2009 (:map message-mode-map
2010 :prefix-map a/footnote-prefix-map
2011 :prefix "C-c f"
2012 ("a" . footnote-add-footnote)
2013 ("b" . footnote-back-to-message)
2014 ("c" . footnote-cycle-style)
2015 ("d" . footnote-delete-footnote)
2016 ("g" . footnote-goto-footnote)
2017 ("r" . footnote-renumber-footnotes)
2018 ("s" . footnote-set-style)))
2019
2020(use-package ebdb
2021 :straight (:host github :repo "girzel/ebdb")
2022 :after gnus
2023 :bind (:map gnus-group-mode-map ("e" . ebdb))
2024 :config
2025 (setq ebdb-sources (no-littering-expand-var-file-name "ebdb"))
2026 (with-eval-after-load 'swiper
2027 (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t)))
2028
2029(use-feature ebdb-com
2030 :after ebdb)
2031
2032;; (use-package ebdb-complete
2033;; :after ebdb
2034;; :config
2035;; (ebdb-complete-enable))
2036
2037(use-package company-ebdb
2038 :config
2039 (defun company-ebdb--post-complete (_) nil))
2040
2041(use-feature ebdb-gnus
2042 :after ebdb
2043 :custom
2044 (ebdb-gnus-window-configuration
2045 '(article
2046 (vertical 1.0
2047 (summary 0.25 point)
2048 (horizontal 1.0
2049 (article 1.0)
2050 (ebdb-gnus 0.3))))))
2051
2052(use-feature ebdb-mua
2053 :after ebdb
2054 ;; :custom (ebdb-mua-pop-up nil)
2055 )
2056
2057;; (use-package ebdb-message
2058;; :after ebdb)
2059
2060
2061;; (use-package ebdb-vcard
2062;; :after ebdb)
2063
2064(use-package message-x)
2065
b57457b2
AB
2066(comment
2067 (use-package message-x
2068 :custom
2069 (message-x-completion-alist
2070 (quote
2071 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address)
2072 ((if
2073 (boundp
2074 (quote message-newgroups-header-regexp))
2075 message-newgroups-header-regexp message-newsgroups-header-regexp)
2076 . message-expand-group))))))
2077
2078(comment
2079 (use-package gnus-harvest
2080 :commands gnus-harvest-install
2081 :demand t
2082 :config
2083 (if (featurep 'message-x)
2084 (gnus-harvest-install 'message-x)
2085 (gnus-harvest-install))))
2086
2087\f
e3e5e846 2088;;; IRC (with ERC and ZNC)
b57457b2 2089
96840c88
AB
2090(use-feature erc
2091 :bind (("C-c a e b" . erc-switch-to-buffer)
2092 :map erc-mode-map
2093 ("M-a" . erc-track-switch-buffer))
2094 :custom
96840c88
AB
2095 (erc-join-buffer 'bury)
2096 (erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
2097 (erc-nick "bandali")
96840c88
AB
2098 (erc-rename-buffers t)
2099 (erc-server-reconnect-attempts 5)
2100 (erc-server-reconnect-timeout 3)
96840c88
AB
2101 :config
2102 (with-eval-after-load 'ivy
2103 ;; ignore channel buffer names
2104 (add-to-list 'ivy-ignore-buffers "^#"))
2105 (defun erc-cmd-OPME ()
2106 "Request chanserv to op me."
2107 (erc-message "PRIVMSG"
2108 (format "chanserv op %s %s"
2109 (erc-default-target)
2110 (erc-current-nick)) nil))
2111 (defun erc-cmd-DEOPME ()
2112 "Deop myself from current channel."
2113 (erc-cmd-DEOP (format "%s" (erc-current-nick))))
2114 (add-to-list 'erc-modules 'keep-place)
2115 (add-to-list 'erc-modules 'notifications)
2116 (add-to-list 'erc-modules 'spelling)
2117 (add-to-list 'erc-modules 'scrolltoplace)
2118 (erc-update-modules))
2119
e3e5e846
AB
2120(use-feature erc-fill
2121 :after erc
2122 :custom
2123 (erc-fill-function 'erc-fill-static)
2124 (erc-fill-static-center 18))
2125
2126(use-feature erc-pcomplete
2127 :after erc
2128 :custom
2129 (erc-pcomplete-nick-postfix ","))
2130
2131(use-feature erc-track
2132 :after erc
2133 :custom
2384d161 2134 (erc-track-enable-keybindings nil)
e3e5e846
AB
2135 (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT"
2136 "324" "329" "332" "333" "353" "477"))
2137 (erc-track-priority-faces-only 'all)
2138 (erc-track-shorten-function nil))
2139
96840c88
AB
2140(use-package erc-hl-nicks
2141 :after erc)
2142
2143(use-package erc-scrolltoplace
2144 :after erc)
2145
41d290a2 2146(use-package znc
cad07800 2147 :straight (:host nil :repo "https://git.shemshak.org/amin/znc.el")
41d290a2
AB
2148 :bind (("C-c a e e" . znc-erc)
2149 ("C-c a e a" . znc-all))
2150 :config
2151 (let ((pwd (let ((auth (auth-source-search :host "znca")))
2152 (cond
2153 ((null auth) (error "Couldn't find znca's authinfo"))
2154 (t (funcall (plist-get (car auth) :secret)))))))
2155 (setq znc-servers
cad07800 2156 `(("znc.shemshak.org" 1337 t
41d290a2 2157 ((freenode "amin/freenode" ,pwd)))
cad07800 2158 ("znc.shemshak.org" 1337 t
96840c88 2159 ((moznet "amin/moznet" ,pwd)))
cad07800 2160 ("znc.shemshak.org" 1337 t
96840c88 2161 ((oftc "amin/oftc" ,pwd)))))))
41d290a2 2162
b57457b2
AB
2163\f
2164;;; Post initialization
2165
41d290a2
AB
2166(message "Loading %s...done (%.3fs)" user-init-file
2167 (float-time (time-subtract (current-time)
2168 a/before-user-init-time)))
2169
2170;;; init.el ends here