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