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