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