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