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