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