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