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