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