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