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