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