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