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