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