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