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