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