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