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