emacs: uncomment and rewrite no-package-initialize thingy
[~bandali/configs] / .emacs.d / init.el
CommitLineData
49e9503b 1;;; init.el --- Amin Bandali's Emacs config -*- lexical-binding: t -*-
41d290a2
AB
2
3;; Copyright (C) 2018-2019 Amin Bandali <bandali@gnu.org>
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
b57457b2
AB
21;; programmer, and free software advocate. Uses straight.el for
22;; purely functional and fully reproducible package management.
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
41d290a2
AB
40(defvar a/before-user-init-time (current-time)
41 "Value of `current-time' when Emacs begins loading `user-init-file'.")
42(message "Loading Emacs...done (%.3fs)"
43 (float-time (time-subtract a/before-user-init-time
44 before-init-time)))
45
b57457b2
AB
46;; temporarily increase `gc-cons-threshhold' and `gc-cons-percentage'
47;; during startup to reduce garbage collection frequency. clearing
48;; `file-name-handler-alist' seems to help reduce startup time too.
41d290a2
AB
49(defvar a/gc-cons-threshold gc-cons-threshold)
50(defvar a/gc-cons-percentage gc-cons-percentage)
51(defvar a/file-name-handler-alist file-name-handler-alist)
52(setq gc-cons-threshold (* 400 1024 1024) ; 400 MiB
53 gc-cons-percentage 0.6
54 file-name-handler-alist nil
55 ;; sidesteps a bug when profiling with esup
56 esup-child-profile-require-level 0)
57
b57457b2 58;; set them back to their defaults once we're done initializing
41d290a2
AB
59(add-hook
60 'after-init-hook
61 (lambda ()
62 (setq gc-cons-threshold a/gc-cons-threshold
63 gc-cons-percentage a/gc-cons-percentage
64 file-name-handler-alist a/file-name-handler-alist)))
65
b57457b2 66;; increase number of lines kept in *Messages* log
41d290a2
AB
67(setq message-log-max 20000)
68
b57457b2
AB
69;; optionally, uncomment to supress some byte-compiler warnings
70;; (see C-h v byte-compile-warnings RET for more info)
41d290a2
AB
71;; (setq byte-compile-warnings
72;; '(not free-vars unresolved noruntime lexical make-local))
73
b57457b2
AB
74\f
75;;; whoami
76
41d290a2
AB
77(setq user-full-name "Amin Bandali"
78 user-mail-address "amin@bndl.org")
79
b57457b2
AB
80\f
81;;; comment macro
82
83;; useful for commenting out multiple sexps at a time
84(defmacro comment (&rest _)
85 "Comment out one or more s-expressions."
86 (declare (indent defun))
87 nil)
88
89\f
90;;; Package management
91
92;; No package.el (for emacs 26 and before, uncomment the following)
93;; Not necessary when using straight.el
94;; (C-h v straight-package-neutering-mode RET)
95
16842394
AB
96(when (and
97 (not (featurep 'straight))
98 (version< emacs-version "27"))
b57457b2
AB
99 (setq package-enable-at-startup nil)
100 ;; (package-initialize)
101 )
102
103;; for emacs 27 and later, we use early-init.el. see
104;; https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=24acb31c04b4048b85311d794e600ecd7ce60d3b
105
106;; straight.el
107
41d290a2
AB
108;; Main engine start...
109
110(setq straight-repository-branch "develop"
111 straight-check-for-modifications '(check-on-save find-when-checking))
112
113(defun a/bootstrap-straight ()
114 (defvar bootstrap-version)
115 (let ((bootstrap-file
116 (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
117 (bootstrap-version 5))
118 (unless (file-exists-p bootstrap-file)
119 (with-current-buffer
120 (url-retrieve-synchronously
121 "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
122 'silent 'inhibit-cookies)
123 (goto-char (point-max))
124 (eval-print-last-sexp)))
125 (load bootstrap-file nil 'nomessage)))
126
127;; Solid rocket booster ignition...
128
41d290a2
AB
129(a/bootstrap-straight)
130
131;; We have lift off!
132
133(setq straight-use-package-by-default t)
134
135(defmacro use-feature (name &rest args)
136 "Like `use-package', but with `straight-use-package-by-default' disabled."
137 (declare (indent defun))
138 `(use-package ,name
139 :straight nil
140 ,@args))
141
142(with-eval-after-load 'recentf
143 (add-to-list 'recentf-exclude
144 (expand-file-name "~/.emacs.d/straight/build/")))
145
146(defun a/reload-init ()
147 "Reload init.el."
148 (interactive)
149 (straight-transaction
150 (straight-mark-transaction-as-init)
29ea9439 151 (load user-init-file)))
41d290a2 152
b57457b2 153;; use-package
41d290a2
AB
154(straight-use-package 'use-package)
155(if nil ; set to t when need to debug init
156 (progn
157 (setq use-package-verbose t
158 use-package-expand-minimally nil
159 use-package-compute-statistics t
160 debug-on-error t)
161 (require 'use-package))
162 (setq use-package-verbose nil
163 use-package-expand-minimally t))
164
165(setq use-package-always-defer t)
166(require 'bind-key)
167
b57457b2
AB
168;; for browsing the Emacsmirror package database
169(comment
170 (use-package epkg
171 :commands (epkg-list-packages epkg-describe-package)
172 :bind
173 (("C-c p e d" . epkg-describe-package)
174 ("C-c p e p" . epkg-list-packages))
175 :config
176 (setq epkg-repository "~/.emacs.d/straight/repos/epkgs/")
177 (eval-when-compile (defvar ivy-initial-inputs-alist))
178 (with-eval-after-load 'ivy
179 (add-to-list
180 'ivy-initial-inputs-alist '(epkg-describe-package . "^") t))))
181
182\f
183;;; Initial setup
184
185;; keep ~/.emacs.d clean
41d290a2
AB
186(use-package no-littering
187 :demand t
188 :config
189 (savehist-mode 1)
190 (add-to-list 'savehist-additional-variables 'kill-ring)
191 (save-place-mode 1)
192 (setq auto-save-file-name-transforms
193 `((".*" ,(no-littering-expand-var-file-name "auto-save/") t))))
194
b57457b2 195;; separate custom file (don't want it mixing with init.el)
41d290a2
AB
196(use-feature custom
197 :no-require t
198 :config
199 (setq custom-file (no-littering-expand-etc-file-name "custom.el"))
200 (when (file-exists-p custom-file)
201 (load custom-file))
b57457b2 202 ;; while at it, treat themes as safe
41d290a2
AB
203 (setf custom-safe-themes t))
204
b57457b2 205;; load the secrets file if it exists, otherwise show a warning
41d290a2
AB
206(with-demoted-errors
207 (load (no-littering-expand-etc-file-name "secrets")))
208
b57457b2 209;; better $PATH (and other environment variable) handling
41d290a2
AB
210(use-package exec-path-from-shell
211 :defer 0.4
212 :init
213 (setq exec-path-from-shell-arguments nil
214 exec-path-from-shell-check-startup-files nil)
215 :config
216 (exec-path-from-shell-initialize)
217 ;; while we're at it, let's fix access to our running ssh-agent
218 (exec-path-from-shell-copy-env "SSH_AGENT_PID")
219 (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
220
b57457b2
AB
221;; only one custom theme at a time
222(comment
223 (defadvice load-theme (before clear-previous-themes activate)
224 "Clear existing theme settings instead of layering them"
225 (mapc #'disable-theme custom-enabled-themes)))
226
227;; start up emacs server. see
228;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server
41d290a2
AB
229(use-feature server
230 :defer 0.4
231 :config (or (server-running-p) (server-mode)))
232
b57457b2
AB
233;; unicode support
234(comment
235 (dolist (ft (fontset-list))
236 (set-fontset-font
237 ft
238 'unicode
239 (font-spec :name "Source Code Pro" :size 14))
240 (set-fontset-font
241 ft
242 'unicode
243 (font-spec :name "DejaVu Sans Mono")
244 nil
245 'append)
246 ;; (set-fontset-font
247 ;; ft
248 ;; 'unicode
249 ;; (font-spec
250 ;; :name "Symbola monospacified for DejaVu Sans Mono")
251 ;; nil
252 ;; 'append)
253 ;; (set-fontset-font
254 ;; ft
255 ;; #x2115 ; ℕ
256 ;; (font-spec :name "DejaVu Sans Mono")
257 ;; nil
258 ;; 'append)
259 (set-fontset-font
260 ft
261 (cons ?Α ?ω)
262 (font-spec :name "DejaVu Sans Mono" :size 14)
263 nil
264 'prepend)))
265
266;; gentler font resizing
41d290a2
AB
267(setq text-scale-mode-step 1.05)
268
b57457b2 269;; focus follows mouse
41d290a2
AB
270(setq mouse-autoselect-window t)
271
272(defun a/no-mouse-autoselect-window ()
b57457b2
AB
273 "Conveniently disable `focus-follows-mouse'.
274For disabling the behaviour for certain buffers and/or modes."
41d290a2
AB
275 (make-local-variable 'mouse-autoselect-window)
276 (setq mouse-autoselect-window nil))
277
b57457b2 278;; better scrolling
41d290a2
AB
279(setq ;; scroll-margin 1
280 ;; scroll-conservatively 10000
281 scroll-step 1
282 scroll-conservatively 10
283 scroll-preserve-screen-position 1)
284
285(use-feature mwheel
286 :defer 0.4
287 :config
288 (setq mouse-wheel-scroll-amount '(1 ((shift) . 1)) ; one line at a time
289 mouse-wheel-progressive-speed nil ; don't accelerate scrolling
290 mouse-wheel-follow-mouse t)) ; scroll window under mouse
291
292(use-feature pixel-scroll
293 :defer 0.4
294 :config (pixel-scroll-mode 1))
295
b57457b2 296;; ask for GPG passphrase in minibuffer
41d290a2
AB
297(setq epg-pinentry-mode 'loopback)
298
b57457b2 299;; useful libraries
41d290a2
AB
300(require 'cl-lib)
301(require 'subr-x)
302
b57457b2
AB
303\f
304;;; Useful utilities
305
41d290a2
AB
306(defmacro a/setq-every (value &rest vars)
307 "Set all the variables from VARS to value VALUE."
308 (declare (indent defun) (debug t))
309 `(progn ,@(mapcar (lambda (x) (list 'setq x value)) vars)))
310
311(defun a/start-process (program &rest args)
312 "Same as `start-process', but doesn't bother about name and buffer."
313 (let ((process-name (concat program "_process"))
314 (buffer-name (generate-new-buffer-name
315 (concat program "_output"))))
316 (apply #'start-process
317 process-name buffer-name program args)))
318
319(defun a/dired-start-process (program &optional args)
320 "Open current file with a PROGRAM."
321 ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can
322 ;; be nil, so remove it).
323 (apply #'a/start-process
324 program
325 (remove nil (list args (dired-get-file-for-visit)))))
326
b57457b2
AB
327(defun a/add-elisp-section ()
328 (interactive)
329 (insert "\n")
330 (previous-line)
331 (insert "\n\f\n;;; "))
332
333\f
334;;; Defaults
335
336;; time and battery in mode-line
337(comment
338 (use-package time
339 :init
340 (setq display-time-default-load-average nil)
341 :config
342 (display-time-mode))
343
344 (use-package battery
345 :config
346 (display-battery-mode)))
347
348;; smaller fringe
41d290a2
AB
349;; (fringe-mode '(3 . 1))
350(fringe-mode nil)
351
b57457b2 352;; disable disabled commands
41d290a2
AB
353(setq disabled-command-function nil)
354
b57457b2
AB
355;; Save what I copy into clipboard from other applications into Emacs'
356;; kill-ring, which would allow me to still be able to easily access
357;; it in case I kill (cut or copy) something else inside Emacs before
358;; yanking (pasting) what I'd originally intended to.
41d290a2
AB
359(setq save-interprogram-paste-before-kill t)
360
b57457b2 361;; minibuffer
41d290a2
AB
362(setq enable-recursive-minibuffers t
363 resize-mini-windows t)
364
b57457b2 365;; lazy-person-friendly yes/no prompts
41d290a2
AB
366(defalias 'yes-or-no-p #'y-or-n-p)
367
b57457b2 368;; i want *scratch* as my startup buffer
41d290a2
AB
369(setq initial-buffer-choice t)
370
b57457b2 371;; i don't need the default hint
41d290a2
AB
372(setq initial-scratch-message nil)
373
b57457b2 374;; use customizable text-mode as major mode for *scratch*
41d290a2
AB
375(setq initial-major-mode 'text-mode)
376
b57457b2 377;; inhibit buffer list when more than 2 files are loaded
41d290a2
AB
378(setq inhibit-startup-buffer-menu t)
379
b57457b2 380;; don't need to see the startup screen or the echo area message
41d290a2
AB
381(advice-add #'display-startup-echo-area-message :override #'ignore)
382(setq inhibit-startup-screen t
383 inhibit-startup-echo-area-message user-login-name)
384
b57457b2 385;; more useful frame titles
41d290a2
AB
386(setq frame-title-format
387 '("" invocation-name " - "
388 (:eval (if (buffer-file-name)
389 (abbreviate-file-name (buffer-file-name))
390 "%b"))))
391
b57457b2 392;; backups (C-h v make-backup-files RET)
41d290a2
AB
393(setq backup-by-copying t
394 version-control t
395 delete-old-versions t)
396
b57457b2 397;; enable automatic reloading of changed buffers and files
41d290a2
AB
398(global-auto-revert-mode 1)
399(setq auto-revert-verbose nil
400 global-auto-revert-non-file-buffers nil)
401
b57457b2 402;; always use space for indentation
41d290a2
AB
403(setq-default
404 indent-tabs-mode nil
405 require-final-newline t
406 tab-width 4)
407
b57457b2 408;; enable winner-mode (C-h f winner-mode RET)
41d290a2
AB
409(winner-mode 1)
410
b57457b2
AB
411;; don't display *compilation* buffer on success. based on
412;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
413;; instead of the now obsolete `flet'.
41d290a2
AB
414(with-eval-after-load 'compile
415 (defun a/compilation-finish-function (buffer outstr)
416 (unless (string-match "finished" outstr)
417 (switch-to-buffer-other-window buffer))
418 t)
419
420 (setq compilation-finish-functions #'a/compilation-finish-function)
421
422 (require 'cl-macs)
423
424 (defadvice compilation-start
425 (around inhibit-display
426 (command &optional mode name-function highlight-regexp))
427 (if (not (string-match "^\\(find\\|grep\\)" command))
428 (cl-letf (((symbol-function 'display-buffer) #'ignore))
429 (save-window-excursion ad-do-it))
430 ad-do-it))
431 (ad-activate 'compilation-start))
432
b57457b2
AB
433;; search for non-ASCII characters: i’d like non-ASCII characters such
434;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
435;; counterpart. shoutout to
436;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
41d290a2 437(setq search-default-mode #'char-fold-to-regexp)
41d290a2
AB
438;; uncomment to extend this behaviour to query-replace
439;; (setq replace-char-fold t)
440
b57457b2 441;; cursor shape
41d290a2
AB
442(setq-default cursor-type 'bar)
443
b57457b2 444;; allow scrolling in Isearch
41d290a2
AB
445(setq isearch-allow-scroll t)
446
b57457b2
AB
447\f
448;;; General bindings
449
41d290a2
AB
450(bind-keys
451 ("C-c a i" . ielm)
452
453 ("C-c e b" . eval-buffer)
454 ("C-c e r" . eval-region)
455
456 ("C-c e i" . emacs-init-time)
457 ("C-c e u" . emacs-uptime)
458
459 ("C-c F m" . make-frame-command)
460 ("C-c F d" . delete-frame)
461 ("C-c F D" . delete-other-frames)
462
463 ("C-c o" . other-window)
464
465 ("C-S-h C" . describe-char)
466 ("C-S-h F" . describe-face)
467
468 ("C-x k" . kill-this-buffer)
469 ("C-x K" . kill-buffer)
470
471 ("s-p" . beginning-of-buffer)
b57457b2
AB
472 ("s-n" . end-of-buffer)
473
474 :map emacs-lisp-mode-map
475 ("<C-return>" . a/add-elisp-section))
41d290a2
AB
476
477(when (display-graphic-p)
478 (unbind-key "C-z" global-map))
479
480(bind-keys
481 :prefix-map a/straight-prefix-map
482 :prefix "C-c p s"
483 ("u" . straight-use-package)
484 ("f" . straight-freeze-versions)
485 ("t" . straight-thaw-versions)
486 ("P" . straight-prune-build)
487 ("g" . straight-get-recipe)
488 ("r" . a/reload-init)
489 ;; M-x ^straight-.*-all$
490 ("a c" . straight-check-all)
491 ("a f" . straight-fetch-all)
492 ("a m" . straight-merge-all)
493 ("a n" . straight-normalize-all)
494 ("a F" . straight-pull-all)
495 ("a P" . straight-push-all)
496 ("a r" . straight-rebuild-all)
497 ;; M-x ^straight-.*-package$
498 ("p c" . straight-check-package)
499 ("p f" . straight-fetch-package)
500 ("p m" . straight-merge-package)
501 ("p n" . straight-normalize-package)
502 ("p F" . straight-pull-package)
503 ("p P" . straight-push-package)
504 ("p r" . straight-rebuild-package))
505
b57457b2
AB
506\f
507;;; Essential packages
508
41d290a2
AB
509(use-package auto-compile
510 :demand t
511 :config
512 (auto-compile-on-load-mode)
513 (auto-compile-on-save-mode)
514 (setq auto-compile-display-buffer nil
515 auto-compile-mode-line-counter t
516 auto-compile-source-recreate-deletes-dest t
517 auto-compile-toggle-deletes-nonlib-dest t
518 auto-compile-update-autoloads t)
519 (add-hook 'auto-compile-inhibit-compile-hook
520 'auto-compile-inhibit-compile-detached-git-head))
521
b57457b2 522;; use the org-plus-contrib package to get the whole deal
41d290a2
AB
523(straight-use-package 'org-plus-contrib)
524
525(use-feature org
526 :defer 0.5
527 :config
528 (setq org-src-tab-acts-natively t
529 org-src-preserve-indentation nil
530 org-edit-src-content-indentation 0
531 org-link-email-description-format "Email %c: %s" ; %.30s
532 org-highlight-latex-and-related '(entities)
533 org-use-speed-commands t
534 org-startup-folded 'content
535 org-catch-invisible-edits 'show-and-error
536 org-log-done 'time)
537 (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t)
538 :bind
539 (("C-c a o a" . org-agenda)
540 :map org-mode-map
541 ("M-L" . org-insert-last-stored-link)
542 ("s-T" . org-todo))
543 :hook ((org-mode . org-indent-mode)
544 (org-mode . auto-fill-mode)
545 (org-mode . flyspell-mode))
546 :custom
547 (org-agenda-files '("~/usr/org/todos/personal.org"
548 "~/usr/org/todos/masters.org"))
549 (org-agenda-start-on-weekday 0)
550 (org-latex-packages-alist '(("" "listings") ("" "color")))
551 :custom-face
552 '(org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21"))))
553 '(org-block ((t (:background "#1d1f21"))))
554 '(org-latex-and-related ((t (:foreground "#b294bb")))))
555
556(use-feature ox-latex
557 :after ox
558 :config
559 (setq org-latex-listings 'listings
560 ;; org-latex-prefer-user-labels t
561 )
562 (add-to-list 'org-latex-classes
563 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
564 ("\\section{%s}" . "\\section*{%s}")
565 ("\\subsection{%s}" . "\\subsection*{%s}")
566 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
567 ("\\paragraph{%s}" . "\\paragraph*{%s}")
568 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
569 t)
570 (require 'ox-beamer))
571
572(use-feature ox-extra
573 :config
574 (ox-extras-activate '(latex-header-blocks ignore-headlines)))
575
b57457b2
AB
576;; asynchronous tangle, using emacs-async to asynchronously tangle an
577;; org file. closely inspired by
578;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
41d290a2
AB
579(with-eval-after-load 'org
580 (defvar a/show-async-tangle-results nil
581 "Keep *emacs* async buffers around for later inspection.")
582
583 (defvar a/show-async-tangle-time nil
584 "Show the time spent tangling the file.")
585
41d290a2
AB
586 (defun a/async-babel-tangle ()
587 "Tangle org file asynchronously."
588 (interactive)
589 (let* ((file-tangle-start-time (current-time))
590 (file (buffer-file-name))
591 (file-nodir (file-name-nondirectory file))
592 ;; (async-quiet-switch "-q")
593 (file-noext (file-name-sans-extension file)))
594 (async-start
595 `(lambda ()
596 (require 'org)
597 (org-babel-tangle-file ,file))
598 (unless a/show-async-tangle-results
599 `(lambda (result)
600 (if result
29ea9439
AB
601 (message "Tangled %s%s"
602 ,file-nodir
603 (if a/show-async-tangle-time
604 (format " (%.3fs)"
605 (float-time (time-subtract (current-time)
606 ',file-tangle-start-time)))
607 ""))
41d290a2
AB
608 (message "Tangling %s failed" ,file-nodir))))))))
609
610(add-to-list
611 'safe-local-variable-values
612 '(eval add-hook 'after-save-hook #'a/async-babel-tangle 'append 'local))
613
b57457b2 614;; *the* right way to do git
41d290a2
AB
615(use-package magit
616 :defer 0.5
617 :bind (("C-x g" . magit-status)
618 ("s-g s" . magit-status)
619 ("s-g l" . magit-log-buffer-file))
620 :config
621 (magit-add-section-hook 'magit-status-sections-hook
622 'magit-insert-modules
623 'magit-insert-stashes
624 'append)
625 (setq magit-repository-directories '(("~/" . 0)
626 ("~/src/git/" . 1)))
627 (nconc magit-section-initial-visibility-alist
628 '(([unpulled status] . show)
629 ([unpushed status] . show)))
630 :custom-face (magit-diff-file-heading ((t (:weight normal)))))
631
b57457b2 632;; recently opened files
41d290a2
AB
633(use-feature recentf
634 :defer 0.2
635 :config
636 (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
637 (setq recentf-max-saved-items 40))
638
b57457b2 639;; smart M-x enhancement (needed by counsel for history)
41d290a2
AB
640(use-package smex)
641
642(use-package ivy
643 :defer 0.3
644 :bind
645 (:map ivy-minibuffer-map
646 ([escape] . keyboard-escape-quit)
647 ([S-up] . ivy-previous-history-element)
648 ([S-down] . ivy-next-history-element)
649 ("DEL" . ivy-backward-delete-char))
650 :config
651 (setq ivy-wrap t
652 ivy-height 14
653 ivy-use-virtual-buffers t
654 ivy-virtual-abbreviate 'abbreviate
655 ivy-count-format "%d/%d ")
656 (ivy-mode 1)
657 ;; :custom-face
658 ;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold))))
659 ;; (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold))))
660 ;; (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold))))
661)
662
663(use-package swiper
664 :after ivy
665 :bind (("C-s" . swiper-isearch)
666 ("C-r" . swiper)
667 ("C-S-s" . isearch-forward)))
668
669(use-package counsel
670 :after ivy
671 :bind (([remap execute-extended-command] . counsel-M-x)
672 ([remap find-file] . counsel-find-file)
673 ("C-c x" . counsel-M-x)
674 ("C-c f ." . counsel-find-file)
675 ("C-c f l" . counsel-find-library)
2b53c994
AB
676 ("C-c f r" . counsel-recentf)
677 ("s-." . counsel-find-file)
678 ("s-r" . ivy-switch-buffer)
41d290a2
AB
679 :map minibuffer-local-map
680 ("C-r" . counsel-minibuffer-history))
681 :config
682 (counsel-mode 1)
683 (defalias 'locate #'counsel-locate))
684
b57457b2
AB
685(comment
686 (use-package helm
687 :commands (helm-M-x helm-mini helm-resume)
688 :bind (("M-x" . helm-M-x)
689 ("M-y" . helm-show-kill-ring)
690 ("C-x b" . helm-mini)
691 ("C-x C-b" . helm-buffers-list)
692 ("C-x C-f" . helm-find-files)
693 ("C-h r" . helm-info-emacs)
694 ("s-r" . helm-recentf)
695 ("C-s-r" . helm-resume)
696 :map helm-map
697 ("<tab>" . helm-execute-persistent-action)
698 ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals
699 ("C-z" . helm-select-action)) ; List actions
700 :config (helm-mode 1)))
701
41d290a2
AB
702(use-feature eshell
703 :defer 0.5
704 :commands eshell
705 :bind ("C-c a s e" . eshell)
706 :config
707 (eval-when-compile (defvar eshell-prompt-regexp))
708 (defun a/eshell-quit-or-delete-char (arg)
709 (interactive "p")
710 (if (and (eolp) (looking-back eshell-prompt-regexp nil))
711 (eshell-life-is-too-much)
712 (delete-char arg)))
713
714 (defun a/eshell-clear ()
715 (interactive)
716 (let ((inhibit-read-only t))
717 (erase-buffer))
718 (eshell-send-input))
719
720 (defun a/eshell-setup ()
721 (make-local-variable 'company-idle-delay)
722 (defvar company-idle-delay)
723 (setq company-idle-delay nil)
724 (bind-keys :map eshell-mode-map
725 ("C-d" . a/eshell-quit-or-delete-char)
726 ("C-S-l" . a/eshell-clear)
727 ("M-r" . counsel-esh-history)
728 ([tab] . company-complete)))
729
730 :hook (eshell-mode . a/eshell-setup)
731 :custom
732 (eshell-hist-ignoredups t)
733 (eshell-input-filter 'eshell-input-filter-initial-space))
734
735(use-feature ibuffer
736 :bind
737 (("C-x C-b" . ibuffer-other-window)
738 :map ibuffer-mode-map
739 ("P" . ibuffer-backward-filter-group)
740 ("N" . ibuffer-forward-filter-group)
741 ("M-p" . ibuffer-do-print)
742 ("M-n" . ibuffer-do-shell-command-pipe-replace))
743 :config
744 ;; Use human readable Size column instead of original one
745 (define-ibuffer-column size-h
746 (:name "Size" :inline t)
747 (cond
748 ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0)))
749 ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0)))
750 ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0)))
751 (t (format "%8d" (buffer-size)))))
752 :custom
753 (ibuffer-saved-filter-groups
754 '(("default"
755 ("dired" (mode . dired-mode))
756 ("org" (mode . org-mode))
757 ("gnus"
758 (or
759 (mode . gnus-group-mode)
760 (mode . gnus-summary-mode)
761 (mode . gnus-article-mode)
762 ;; not really, but...
763 (mode . message-mode)))
764 ("web"
765 (or
766 (mode . web-mode)
767 (mode . css-mode)
768 (mode . scss-mode)
769 (mode . js2-mode)))
770 ("shell"
771 (or
772 (mode . eshell-mode)
773 (mode . shell-mode)
774 (mode . term-mode)))
775 ("programming"
776 (or
777 (mode . python-mode)
778 (mode . c-mode)
779 (mode . c++-mode)
780 (mode . java-mode)
781 (mode . emacs-lisp-mode)
782 (mode . scheme-mode)
783 (mode . haskell-mode)
784 (mode . lean-mode)
785 (mode . alloy-mode)))
786 ("tex"
787 (or
788 (mode . bibtex-mode)
789 (mode . latex-mode)))
790 ("emacs"
791 (or
792 (name . "^\\*scratch\\*$")
793 (name . "^\\*Messages\\*$")))
794 ("erc" (mode . erc-mode)))))
795 (ibuffer-formats
796 '((mark modified read-only locked " "
797 (name 18 18 :left :elide)
798 " "
799 (size-h 9 -1 :right)
800 " "
801 (mode 16 16 :left :elide)
802 " " filename-and-process)
803 (mark " "
804 (name 16 -1)
805 " " filename)))
806 :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
807
808(use-feature outline
809 :hook (prog-mode . outline-minor-mode)
810 :bind
811 (:map
812 outline-minor-mode-map
813 ("<s-tab>" . outline-toggle-children)
814 ("M-p" . outline-previous-visible-heading)
815 ("M-n" . outline-next-visible-heading)
816 :prefix-map a/outline-prefix-map
817 :prefix "s-o"
818 ("TAB" . outline-toggle-children)
819 ("a" . outline-hide-body)
820 ("H" . outline-hide-body)
821 ("S" . outline-show-all)
822 ("h" . outline-hide-subtree)
823 ("s" . outline-show-subtree)))
824
825(use-feature ls-lisp
826 :custom (ls-lisp-dirs-first t))
827
828(use-feature dired
829 :config
830 (setq dired-listing-switches "-alh"
831 ls-lisp-use-insert-directory-program nil)
832
833 ;; easily diff 2 marked files
834 ;; https://oremacs.com/2017/03/18/dired-ediff/
835 (defun dired-ediff-files ()
836 (interactive)
837 (require 'dired-aux)
838 (defvar ediff-after-quit-hook-internal)
839 (let ((files (dired-get-marked-files))
840 (wnd (current-window-configuration)))
841 (if (<= (length files) 2)
842 (let ((file1 (car files))
843 (file2 (if (cdr files)
844 (cadr files)
845 (read-file-name
846 "file: "
847 (dired-dwim-target-directory)))))
848 (if (file-newer-than-file-p file1 file2)
849 (ediff-files file2 file1)
850 (ediff-files file1 file2))
851 (add-hook 'ediff-after-quit-hook-internal
852 (lambda ()
853 (setq ediff-after-quit-hook-internal nil)
854 (set-window-configuration wnd))))
855 (error "no more than 2 files should be marked"))))
856 :bind (:map dired-mode-map
857 ("b" . dired-up-directory)
858 ("e" . dired-ediff-files)
859 ("E" . dired-toggle-read-only)
860 ("\\" . dired-hide-details-mode)
861 ("z" . (lambda ()
862 (interactive)
863 (a/dired-start-process "zathura"))))
864 :hook (dired-mode . dired-hide-details-mode))
865
866(use-feature help
867 :config
868 (temp-buffer-resize-mode)
869 (setq help-window-select t))
870
871(use-feature tramp
872 :config
873 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
874 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
875 (add-to-list 'tramp-default-proxies-alist
876 (list (regexp-quote (system-name)) nil nil)))
877
878(use-package dash
879 :config (dash-enable-font-lock))
880
881(use-package doc-view
882 :bind (:map doc-view-mode-map
883 ("M-RET" . image-previous-line)))
884
b57457b2
AB
885\f
886;;; Editing
887
888;; highlight uncommitted changes in the left fringe
41d290a2 889(use-package diff-hl
df1c9bc8 890 :defer 0.6
41d290a2
AB
891 :config
892 (setq diff-hl-draw-borders nil)
893 (global-diff-hl-mode)
894 :hook (magit-post-refresh . diff-hl-magit-post-refresh))
895
b57457b2 896;; display Lisp objects at point in the echo area
41d290a2
AB
897(use-feature eldoc
898 :when (version< "25" emacs-version)
899 :config (global-eldoc-mode))
900
b57457b2 901;; highlight matching parens
41d290a2
AB
902(use-feature paren
903 :demand
904 :config (show-paren-mode))
905
906(use-feature simple
907 :config (column-number-mode))
908
b57457b2 909;; save minibuffer history
41d290a2
AB
910(use-feature savehist
911 :config (savehist-mode))
912
b57457b2 913;; automatically save place in files
41d290a2
AB
914(use-feature saveplace
915 :when (version< "25" emacs-version)
916 :config (save-place-mode))
917
918(use-feature prog-mode
919 :config (global-prettify-symbols-mode)
920 (defun indicate-buffer-boundaries-left ()
921 (setq indicate-buffer-boundaries 'left))
922 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
923
924(use-feature text-mode
925 :hook ((text-mode . indicate-buffer-boundaries-left)
926 (text-mode . abbrev-mode)))
927
928(use-package company
929 :defer 0.6
930 :bind
931 (:map company-active-map
932 ([tab] . company-complete-common-or-cycle)
933 ([escape] . company-abort))
934 :custom
935 (company-minimum-prefix-length 1)
936 (company-selection-wrap-around t)
937 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
938 (company-dabbrev-downcase nil)
939 (company-dabbrev-ignore-case nil)
940 :config
941 (global-company-mode t))
942
943(use-package flycheck
944 :defer 0.6
945 :hook (prog-mode . flycheck-mode)
946 :bind
947 (:map flycheck-mode-map
948 ("M-P" . flycheck-previous-error)
949 ("M-N" . flycheck-next-error))
950 :config
951 ;; Use the load-path from running Emacs when checking elisp files
952 (setq flycheck-emacs-lisp-load-path 'inherit)
953
954 ;; Only flycheck when I actually save the buffer
955 (setq flycheck-check-syntax-automatically '(mode-enabled save)))
956
957;; http://endlessparentheses.com/ispell-and-apostrophes.html
958(use-package ispell
959 :defer 0.6
960 :config
961 ;; ’ can be part of a word
962 (setq ispell-local-dictionary-alist
963 `((nil "[[:alpha:]]" "[^[:alpha:]]"
964 "['\x2019]" nil ("-B") nil utf-8)))
965 ;; don't send ’ to the subprocess
966 (defun endless/replace-apostrophe (args)
967 (cons (replace-regexp-in-string
968 "’" "'" (car args))
969 (cdr args)))
970 (advice-add #'ispell-send-string :filter-args
971 #'endless/replace-apostrophe)
972
973 ;; convert ' back to ’ from the subprocess
974 (defun endless/replace-quote (args)
975 (if (not (derived-mode-p 'org-mode))
976 args
977 (cons (replace-regexp-in-string
978 "'" "’" (car args))
979 (cdr args))))
980 (advice-add #'ispell-parse-output :filter-args
981 #'endless/replace-quote))
982
b57457b2
AB
983\f
984;;; Programming modes
985
41d290a2
AB
986(use-feature lisp-mode
987 :config
988 (add-hook 'emacs-lisp-mode-hook 'outline-minor-mode)
989 (add-hook 'emacs-lisp-mode-hook 'reveal-mode)
990 (defun indent-spaces-mode ()
991 (setq indent-tabs-mode nil))
992 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
993
994(use-package alloy-mode
995 :straight (:host github :repo "dwwmmn/alloy-mode")
996 :mode "\\.als\\'"
997 :config (setq alloy-basic-offset 2))
998
b57457b2 999(use-package proof-site ; for Coq
41d290a2
AB
1000 :straight proof-general)
1001
1002(eval-when-compile (defvar lean-mode-map))
1003(use-package lean-mode
1004 :defer 0.4
1005 :bind (:map lean-mode-map
1006 ("S-SPC" . company-complete))
1007 :config
1008 (require 'lean-input)
1009 (setq default-input-method "Lean"
1010 lean-input-tweak-all '(lean-input-compose
1011 (lean-input-prepend "/")
1012 (lean-input-nonempty))
1013 lean-input-user-translations '(("/" "/")))
1014 (lean-input-setup))
1015
1016(use-package haskell-mode
1017 :config
1018 (setq haskell-indentation-layout-offset 4
1019 haskell-indentation-left-offset 4
1020 flycheck-checker 'haskell-hlint
1021 flycheck-disabled-checkers '(haskell-stack-ghc haskell-ghc)))
1022
1023(use-package dante
1024 :after haskell-mode
1025 :commands dante-mode
1026 :hook (haskell-mode . dante-mode))
1027
1028(use-package hlint-refactor
1029 :after haskell-mode
1030 :bind (:map hlint-refactor-mode-map
1031 ("C-c l b" . hlint-refactor-refactor-buffer)
1032 ("C-c l r" . hlint-refactor-refactor-at-point))
1033 :hook (haskell-mode . hlint-refactor-mode))
1034
1035(use-package flycheck-haskell
1036 :after haskell-mode)
b57457b2 1037;; alternative: hs-lint https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el
41d290a2
AB
1038
1039(use-package sgml-mode
1040 :config
1041 (setq sgml-basic-offset 2))
1042
1043(use-package css-mode
1044 :config
1045 (setq css-indent-offset 2))
1046
1047(use-package web-mode
1048 :mode "\\.html\\'"
1049 :config
1050 (a/setq-every 2
1051 web-mode-code-indent-offset
1052 web-mode-css-indent-offset
1053 web-mode-markup-indent-offset))
1054
1055(use-package emmet-mode
1056 :after (:any web-mode css-mode sgml-mode)
1057 :bind* (("C-)" . emmet-next-edit-point)
1058 ("C-(" . emmet-prev-edit-point))
1059 :config
1060 (unbind-key "C-j" emmet-mode-keymap)
1061 (setq emmet-move-cursor-between-quotes t)
1062 :hook (web-mode css-mode html-mode sgml-mode))
1063
b57457b2
AB
1064(comment
1065 (use-package meghanada
1066 :bind
1067 (:map meghanada-mode-map
1068 (("C-M-o" . meghanada-optimize-import)
1069 ("C-M-t" . meghanada-import-all)))
1070 :hook (java-mode . meghanada-mode)))
1071
1072(comment
1073 (use-package treemacs
1074 :config (setq treemacs-never-persist t))
1075
1076 (use-package yasnippet
1077 :config
1078 ;; (yas-global-mode)
1079 )
1080
1081 (use-package lsp-mode
1082 :init (setq lsp-eldoc-render-all nil
1083 lsp-highlight-symbol-at-point nil)
1084 )
1085
1086 (use-package hydra)
1087
1088 (use-package company-lsp
1089 :after company
1090 :config
1091 (setq company-lsp-cache-candidates t
1092 company-lsp-async t))
1093
1094 (use-package lsp-ui
1095 :config
1096 (setq lsp-ui-sideline-update-mode 'point))
1097
1098 (use-package lsp-java
1099 :config
1100 (add-hook 'java-mode-hook
1101 (lambda ()
1102 (setq-local company-backends (list 'company-lsp))))
1103
1104 (add-hook 'java-mode-hook 'lsp-java-enable)
1105 (add-hook 'java-mode-hook 'flycheck-mode)
1106 (add-hook 'java-mode-hook 'company-mode)
1107 (add-hook 'java-mode-hook 'lsp-ui-mode))
1108
1109 (use-package dap-mode
1110 :after lsp-mode
1111 :config
1112 (dap-mode t)
1113 (dap-ui-mode t))
1114
1115 (use-package dap-java
1116 :after (lsp-java))
1117
1118 (use-package lsp-java-treemacs
1119 :after (treemacs)))
1120
1121(comment
1122 (use-package eclim
1123 :bind (:map eclim-mode-map ("S-SPC" . company-complete))
1124 :hook ((java-mode . eclim-mode)
1125 (eclim-mode . (lambda ()
1126 (make-local-variable 'company-idle-delay)
1127 (defvar company-idle-delay)
1128 ;; (setq company-idle-delay 0.7)
1129 (setq company-idle-delay nil))))
1130 :custom
1131 (eclim-auto-save nil)
1132 ;; (eclimd-default-workspace "~/src/eclipse-workspace-exp")
1133 (eclim-executable "~/.p2/pool/plugins/org.eclim_2.8.0/bin/eclim")
1134 (eclim-eclipse-dirs '("~/usr/eclipse/dsl-2018-09/eclipse"))))
1135
41d290a2
AB
1136(use-package geiser)
1137
1138(use-feature geiser-guile
1139 :config
1140 (setq geiser-guile-load-path "~/src/git/guix"))
1141
1142(use-package guix)
1143
b57457b2
AB
1144(comment
1145 (use-package auctex
1146 :custom
1147 (font-latex-fontify-sectioning 'color)))
1148
1149\f
1150;;; Theme
1151
1152(add-to-list 'custom-theme-load-path "~/.emacs.d/lisp")
1153(load-theme 'tangomod t)
1154
1155(use-package smart-mode-line
1156 :commands (sml/apply-theme)
1157 :demand
1158 :config
1159 (sml/setup))
1160
1161(use-package doom-themes)
1162
1163(defvar a/org-mode-font-lock-keywords
1164 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
1165 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
1166 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
1167 (4 '(:foreground "#c5c8c6") t)))) ; title
1168
1169(defun a/lights-on ()
1170 "Enable my favourite light theme."
1171 (interactive)
1172 (mapc #'disable-theme custom-enabled-themes)
1173 (load-theme 'tangomod t)
1174 (sml/apply-theme 'automatic)
1175 (font-lock-remove-keywords
1176 'org-mode a/org-mode-font-lock-keywords))
1177
1178(defun a/lights-off ()
1179 "Go dark."
1180 (interactive)
1181 (mapc #'disable-theme custom-enabled-themes)
1182 (load-theme 'doom-tomorrow-night t)
1183 (sml/apply-theme 'automatic)
1184 (font-lock-add-keywords
1185 'org-mode a/org-mode-font-lock-keywords t))
1186
1187(bind-keys
1188 ("s-t d" . a/lights-off)
1189 ("s-t l" . a/lights-on))
1190
1191\f
1192;;; Emacs enhancements & auxiliary packages
1193
41d290a2
AB
1194(use-feature man
1195 :config (setq Man-width 80))
1196
1197(use-package which-key
1198 :defer 0.4
1199 :config
1200 (which-key-add-key-based-replacements
1201 ;; prefixes for global prefixes and minor modes
1202 "C-c @" "outline"
1203 "C-c !" "flycheck"
1204 "C-c 8" "typo"
1205 "C-c 8 -" "typo/dashes"
1206 "C-c 8 <" "typo/left-brackets"
1207 "C-c 8 >" "typo/right-brackets"
1208 "C-x 8" "unicode"
1209 "C-x a" "abbrev/expand"
1210 "C-x r" "rectangle/register/bookmark"
1211 "C-x v" "version control"
1212 ;; prefixes for my personal bindings
1213 "C-c a" "applications"
1214 "C-c a e" "erc"
1215 "C-c a o" "org"
1216 "C-c a s" "shells"
1217 "C-c p" "package-management"
1218 ;; "C-c p e" "package-management/epkg"
1219 "C-c p s" "straight.el"
1220 "C-c psa" "all"
1221 "C-c psp" "package"
1222 "C-c c" "compile-and-comments"
1223 "C-c e" "eval"
1224 "C-c f" "files"
1225 "C-c F" "frames"
1226 "C-S-h" "help(ful)"
1227 "C-c m" "multiple-cursors"
1228 "C-c P" "projectile"
1229 "C-c P s" "projectile/search"
1230 "C-c P x" "projectile/execute"
1231 "C-c P 4" "projectile/other-window"
1232 "C-c q" "boxquote"
1233 "s-g" "magit"
1234 "s-o" "outline"
1235 "s-t" "themes")
1236
1237 ;; prefixes for major modes
1238 (which-key-add-major-mode-key-based-replacements 'message-mode
1239 "C-c f" "footnote")
1240 (which-key-add-major-mode-key-based-replacements 'org-mode
1241 "C-c C-v" "org-babel")
1242 (which-key-add-major-mode-key-based-replacements 'web-mode
1243 "C-c C-a" "web/attributes"
1244 "C-c C-b" "web/blocks"
1245 "C-c C-d" "web/dom"
1246 "C-c C-e" "web/element"
1247 "C-c C-t" "web/tags")
1248
1249 (which-key-mode)
1250 :custom
1251 (which-key-add-column-padding 5)
1252 (which-key-max-description-length 32))
1253
b57457b2 1254(use-package crux ; results in Waiting for git... [2 times]
41d290a2
AB
1255 :defer 0.4
1256 :bind (("C-c b k" . crux-kill-other-buffers)
1257 ("C-c d" . crux-duplicate-current-line-or-region)
1258 ("C-c D" . crux-duplicate-and-comment-current-line-or-region)
1259 ("C-c f c" . crux-copy-file-preserve-attributes)
1260 ("C-c f d" . crux-delete-file-and-buffer)
1261 ("C-c f r" . crux-rename-file-and-buffer)
1262 ("C-c j" . crux-top-join-line)
1263 ("C-S-j" . crux-top-join-line)))
1264
1265(use-package mwim
1266 :bind (("C-a" . mwim-beginning-of-code-or-line)
1267 ("C-e" . mwim-end-of-code-or-line)
1268 ("<home>" . mwim-beginning-of-line-or-code)
1269 ("<end>" . mwim-end-of-line-or-code)))
1270
1271(use-package projectile
1272 :bind-keymap ("C-c P" . projectile-command-map)
1273 :config
1274 (projectile-mode)
1275
1276 (defun my-projectile-invalidate-cache (&rest _args)
1277 ;; ignore the args to `magit-checkout'
1278 (projectile-invalidate-cache nil))
1279
1280 (eval-after-load 'magit-branch
1281 '(progn
1282 (advice-add 'magit-checkout
1283 :after #'my-projectile-invalidate-cache)
1284 (advice-add 'magit-branch-and-checkout
1285 :after #'my-projectile-invalidate-cache)))
1286 :custom (projectile-completion-system 'ivy))
1287
1288(use-package helpful
1289 :defer 0.6
1290 :bind
1291 (("C-S-h c" . helpful-command)
1292 ("C-S-h f" . helpful-callable) ; helpful-function
1293 ("C-S-h v" . helpful-variable)
1294 ("C-S-h k" . helpful-key)
1295 ("C-S-h p" . helpful-at-point)))
1296
1297(use-package unkillable-scratch
1298 :defer 0.6
1299 :config
1300 (unkillable-scratch 1)
1301 :custom
1302 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1303
b57457b2
AB
1304;; ,----
1305;; | make pretty boxed quotes like this
1306;; `----
41d290a2
AB
1307(use-package boxquote
1308 :defer 0.6
1309 :bind
1310 (:prefix-map a/boxquote-prefix-map
1311 :prefix "C-c q"
1312 ("b" . boxquote-buffer)
1313 ("B" . boxquote-insert-buffer)
1314 ("d" . boxquote-defun)
1315 ("F" . boxquote-insert-file)
1316 ("hf" . boxquote-describe-function)
1317 ("hk" . boxquote-describe-key)
1318 ("hv" . boxquote-describe-variable)
1319 ("hw" . boxquote-where-is)
1320 ("k" . boxquote-kill)
1321 ("p" . boxquote-paragraph)
1322 ("q" . boxquote-boxquote)
1323 ("r" . boxquote-region)
1324 ("s" . boxquote-shell-command)
1325 ("t" . boxquote-text)
1326 ("T" . boxquote-title)
1327 ("u" . boxquote-unbox)
1328 ("U" . boxquote-unbox-region)
1329 ("y" . boxquote-yank)
1330 ("M-q" . boxquote-fill-paragraph)
1331 ("M-w" . boxquote-kill-ring-save)))
1332
1333(use-package orgalist
b57457b2 1334 ;; http://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00007.html
41d290a2
AB
1335 :disabled t
1336 :after message
1337 :hook (message-mode . orgalist-mode))
1338
b57457b2 1339;; easily type pretty quotes & other typography, like ‘’“”-–—«»‹›
41d290a2
AB
1340(use-package typo
1341 :defer 0.5
1342 :config
1343 (typo-global-mode 1)
1344 :hook (text-mode . typo-mode))
1345
b57457b2 1346;; highlight TODOs in buffers
41d290a2
AB
1347(use-package hl-todo
1348 :defer 0.5
1349 :config
1350 (global-hl-todo-mode))
1351
1352(use-package shrink-path
1353 :defer 0.5
1354 :after eshell
1355 :config
1356 (defvar user-@-host (concat (user-login-name) "@" (system-name) " "))
1357 (defun +eshell/prompt ()
1358 (let ((base/dir (shrink-path-prompt default-directory)))
1359 (concat (propertize user-@-host 'face 'default)
1360 (propertize (car base/dir)
1361 'face 'font-lock-comment-face)
1362 (propertize (cdr base/dir)
1363 'face 'font-lock-constant-face)
1364 (propertize "> " 'face 'default))))
1365 (setq eshell-prompt-regexp (concat user-@-host ".*> ")
1366 eshell-prompt-function #'+eshell/prompt))
1367
1368(use-package eshell-up
1369 :after eshell
1370 :commands eshell-up)
1371
1372(use-package multi-term
1373 :defer 0.6
fb078e63
AB
1374 :bind (("C-c a s m m" . multi-term)
1375 ("C-c a s m d" . multi-term-dedicated-toggle)
1376 ("C-c a s m p" . multi-term-prev)
1377 ("C-c a s m n" . multi-term-next)
41d290a2
AB
1378 :map term-mode-map
1379 ("C-c C-j" . term-char-mode)
1380 :map term-raw-map
1381 ("C-c C-j" . term-line-mode))
1382 :config
96c704d7
AB
1383 (setq multi-term-program "screen"
1384 multi-term-program-switches (concat "-c"
1385 (getenv "XDG_CONFIG_HOME")
1386 "/screen/screenrc")
41d290a2
AB
1387 ;; TODO: add separate bindings for connecting to existing
1388 ;; session vs. always creating a new one
1389 multi-term-dedicated-select-after-open-p t
1390 multi-term-dedicated-window-height 20
1391 multi-term-dedicated-max-window-height 30
1392 term-bind-key-alist
1393 '(("C-c C-c" . term-interrupt-subjob)
1394 ("C-c C-e" . term-send-esc)
1395 ("C-k" . kill-line)
fb078e63
AB
1396 ;; ("C-y" . term-paste)
1397 ("C-y" . term-send-raw)
41d290a2
AB
1398 ("M-f" . term-send-forward-word)
1399 ("M-b" . term-send-backward-word)
1400 ("M-p" . term-send-up)
1401 ("M-n" . term-send-down)
fb078e63
AB
1402 ("M-j" . term-send-raw-meta)
1403 ("M-y" . term-send-raw-meta)
1404 ("M-/" . term-send-raw-meta)
1405 ("M-0" . term-send-raw-meta)
1406 ("M-1" . term-send-raw-meta)
1407 ("M-2" . term-send-raw-meta)
1408 ("M-3" . term-send-raw-meta)
1409 ("M-4" . term-send-raw-meta)
1410 ("M-5" . term-send-raw-meta)
1411 ("M-6" . term-send-raw-meta)
1412 ("M-7" . term-send-raw-meta)
1413 ("M-8" . term-send-raw-meta)
1414 ("M-9" . term-send-raw-meta)
41d290a2
AB
1415 ("<C-backspace>" . term-send-backward-kill-word)
1416 ("<M-DEL>" . term-send-backward-kill-word)
1417 ("M-d" . term-send-delete-word)
1418 ("M-," . term-send-raw)
1419 ("M-." . comint-dynamic-complete))
1420 term-unbind-key-alist
fb078e63
AB
1421 '("C-z" "C-x" "C-c" "C-h"
1422 ;; "C-y"
1423 "<ESC>")))
41d290a2
AB
1424
1425(use-package page-break-lines
b57457b2 1426 :defer 0.5
41d290a2
AB
1427 :config
1428 (global-page-break-lines-mode))
1429
1430(use-package expand-region
1431 :bind ("C-=" . er/expand-region))
1432
1433(use-package multiple-cursors
1434 :bind
1435 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
1436 (:prefix-map a/mc-prefix-map
1437 :prefix "C-c m"
1438 ("c" . mc/edit-lines)
1439 ("n" . mc/mark-next-like-this)
1440 ("p" . mc/mark-previous-like-this)
1441 ("a" . mc/mark-all-like-this))))
1442
1443(use-package forge
1444 :after magit
1445 :demand)
1446
1447(use-package yasnippet
1448 :defer 0.6
1449 :config
1450 (defconst yas-verbosity-cur yas-verbosity)
1451 (setq yas-verbosity 2)
1452 (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets")
1453 (yas-reload-all)
1454 (setq yas-verbosity yas-verbosity-cur)
1455 :hook
1456 (text-mode . yas-minor-mode))
1457
1458(use-package debbugs
1459 :straight (debbugs
1460 :host github
1461 :repo "emacs-straight/debbugs"
1462 :files (:defaults "Debbugs.wsdl")))
1463
1464(use-package org-ref
1465 :init
1466 (a/setq-every '("~/usr/org/references.bib")
1467 reftex-default-bibliography
1468 org-ref-default-bibliography)
1469 (setq
1470 org-ref-bibliography-notes "~/usr/org/notes.org"
1471 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1472
b57457b2 1473;; ugh, temporary (still better than using the proprietary web app)
41d290a2
AB
1474(use-package slack
1475 :commands (slack-start)
1476 :init
1477 (eval-when-compile ; silence the byte-compiler
1478 (defvar url-http-data nil)
1479 (defvar url-http-extra-headers nil)
1480 (defvar url-http-method nil)
1481 (defvar url-callback-function nil)
1482 (defvar url-callback-arguments nil)
1483 (defvar oauth--token-data nil))
1484 (setq slack-buffer-emojify t
1485 slack-prefer-current-team t)
1486 :config
1487 (slack-register-team
1488 :name "nday-students"
1489 :default t
1490 :token nday-students-token
1491 :subscribed-channels '(general)
1492 :full-and-display-names t)
1493 (add-to-list 'swiper-font-lock-exclude 'slack-message-buffer-mode t)
1494 (setq lui-time-stamp-format "[%Y-%m-%d %H:%M:%S]"
1495 lui-time-stamp-only-when-changed-p t
1496 lui-time-stamp-position 'right)
1497 :bind
1498 (("C-c s s" . slack-start)
1499 ("C-c s u" . slack-select-unread-rooms)
1500 ("C-c s b" . slack-select-rooms)
1501 ("C-c s t" . slack-change-current-team)
1502 ("C-c s c" . slack-ws-close)
1503 :map slack-mode-map
1504 ("M-p" . slack-buffer-goto-prev-message)
1505 ("M-n" . slack-buffer-goto-next-message)
1506 ("C-c e" . slack-message-edit)
1507 ("C-c k" . slack-message-delete)
1508 ("C-c C-k" . slack-channel-leave)
1509 ("C-c r a" . slack-message-add-reaction)
1510 ("C-c r r" . slack-message-remove-reaction)
1511 ("C-c r s" . slack-message-show-reaction-users)
1512 ("C-c p l" . slack-room-pins-list)
1513 ("C-c p a" . slack-message-pins-add)
1514 ("C-c p r" . slack-message-pins-remove)
1515 ("@" . slack-message-embed-mention)
1516 ("#" . slack-message-embed-channel)))
1517
1518(use-package alert
1519 :commands (alert)
1520 :init
1521 (setq alert-default-style 'notifier))
1522
b57457b2
AB
1523\f
1524;;; Email (with Gnus)
1525
41d290a2
AB
1526(defvar a/maildir (expand-file-name "~/mail/"))
1527(with-eval-after-load 'recentf
1528 (add-to-list 'recentf-exclude a/maildir))
1529
1530(setq
1531 a/gnus-init-file (no-littering-expand-etc-file-name "gnus")
1532 mail-user-agent 'gnus-user-agent
1533 read-mail-command 'gnus)
1534
1535(use-feature gnus
1536 :bind (("s-m" . gnus)
1537 ("s-M" . gnus-unplugged))
1538 :init
1539 (setq
1540 gnus-select-method '(nnnil "")
1541 gnus-secondary-select-methods
1542 '((nnimap "amin"
1543 (nnimap-stream plain)
1544 (nnimap-address "127.0.0.1")
1545 (nnimap-server-port 143)
1546 (nnimap-authenticator plain)
727d14d3
AB
1547 (nnimap-user "amin@bndl.local"))
1548 (nnimap "uw"
41d290a2
AB
1549 (nnimap-stream plain)
1550 (nnimap-address "127.0.0.1")
1551 (nnimap-server-port 143)
1552 (nnimap-authenticator plain)
727d14d3
AB
1553 (nnimap-user "abandali@uw.local"))
1554 (nnimap "csc"
41d290a2
AB
1555 (nnimap-stream plain)
1556 (nnimap-address "127.0.0.1")
1557 (nnimap-server-port 143)
1558 (nnimap-authenticator plain)
727d14d3 1559 (nnimap-user "abandali@csc.uw.local")))
41d290a2
AB
1560 gnus-message-archive-group "nnimap+amin:Sent"
1561 gnus-parameters
1562 '(("gnu\\.deepspec"
1563 (to-address . "deepspec@lists.cs.princeton.edu")
1564 (to-list . "deepspec@lists.cs.princeton.edu"))
1565 ("gnu\\.emacs-devel"
1566 (to-address . "emacs-devel@gnu.org")
1567 (to-list . "emacs-devel@gnu.org"))
1568 ("gnu\\.emacs-orgmode"
1569 (to-address . "emacs-orgmode@gnu.org")
1570 (to-list . "emacs-orgmode@gnu.org"))
1571 ("gnu\\.emacsconf-discuss"
1572 (to-address . "emacsconf-discuss@gnu.org")
1573 (to-list . "emacsconf-discuss@gnu.org"))
1574 ("gnu\\.fencepost-users"
1575 (to-address . "fencepost-users@gnu.org")
1576 (to-list . "fencepost-users@gnu.org"))
1577 ("gnu\\.gnunet-developers"
1578 (to-address . "gnunet-developers@gnu.org")
1579 (to-list . "gnunet-developers@gnu.org"))
1580 ("gnu\\.guile-devel"
1581 (to-address . "guile-devel@gnu.org")
1582 (to-list . "guile-devel@gnu.org"))
1583 ("gnu\\.guix-devel"
1584 (to-address . "guix-devel@gnu.org")
1585 (to-list . "guix-devel@gnu.org"))
1586 ("gnu\\.haskell-art"
1587 (to-address . "haskell-art@we.lurk.org")
1588 (to-list . "haskell-art@we.lurk.org"))
1589 ("gnu\\.haskell-cafe"
1590 (to-address . "haskell-cafe@haskell.org")
1591 (to-list . "haskell-cafe@haskell.org"))
1592 ("gnu\\.help-gnu-emacs"
1593 (to-address . "help-gnu-emacs@gnu.org")
1594 (to-list . "help-gnu-emacs@gnu.org"))
1595 ("gnu\\.info-gnu-emacs"
1596 (to-address . "info-gnu-emacs@gnu.org")
1597 (to-list . "info-gnu-emacs@gnu.org"))
1598 ("gnu\\.info-guix"
1599 (to-address . "info-guix@gnu.org")
1600 (to-list . "info-guix@gnu.org"))
1601 ("gnu\\.notmuch"
1602 (to-address . "notmuch@notmuchmail.org")
1603 (to-list . "notmuch@notmuchmail.org"))
1604 ("gnu\\.parabola-dev"
1605 (to-address . "dev@lists.parabola.nu")
1606 (to-list . "dev@lists.parabola.nu"))
1607 ("gnu\\.webmasters"
1608 (to-address . "webmasters@gnu.org")
1609 (to-list . "webmasters@gnu.org"))
1610 ("gnu\\.www-commits"
1611 (to-address . "www-commits@gnu.org")
1612 (to-list . "www-commits@gnu.org"))
1613 ("gnu\\.www-discuss"
1614 (to-address . "www-discuss@gnu.org")
1615 (to-list . "www-discuss@gnu.org"))
1616 ("gnu\\.~bandali\\.public-inbox"
1617 (to-address . "~bandali/public-inbox@lists.sr.ht")
1618 (to-list . "~bandali/public-inbox@lists.sr.ht"))
1619 ("gnu\\.~sircmpwn\\.srht-admins"
1620 (to-address . "~sircmpwn/sr.ht-admins@lists.sr.ht")
1621 (to-list . "~sircmpwn/sr.ht-admins@lists.sr.ht"))
1622 ("gnu\\.~sircmpwn\\.srht-announce"
1623 (to-address . "~sircmpwn/sr.ht-announce@lists.sr.ht")
1624 (to-list . "~sircmpwn/sr.ht-announce@lists.sr.ht"))
1625 ("gnu\\.~sircmpwn\\.srht-dev"
1626 (to-address . "~sircmpwn/sr.ht-dev@lists.sr.ht")
1627 (to-list . "~sircmpwn/sr.ht-dev@lists.sr.ht"))
1628 ("gnu\\.~sircmpwn\\.srht-discuss"
1629 (to-address . "~sircmpwn/sr.ht-discuss@lists.sr.ht")
1630 (to-list . "~sircmpwn/sr.ht-discuss@lists.sr.ht"))
1631 ("gnu.*"
1632 (gcc-self . t))
1633 ("gnu\\."
1634 (subscribed . t)))
1635 gnus-large-newsgroup 50
1636 gnus-home-directory (no-littering-expand-var-file-name "gnus/")
1637 gnus-directory (concat gnus-home-directory "news/")
1638 message-directory (concat gnus-home-directory "mail/")
1639 nndraft-directory (concat gnus-home-directory "drafts/")
1640 gnus-save-newsrc-file nil
1641 gnus-read-newsrc-file nil
1642 gnus-interactive-exit nil
1643 gnus-gcc-mark-as-read t)
1644 :config
1645 (require 'ebdb)
1646 (require 'ebdb-mua)
1647 (require 'ebdb-gnus)
1648
1649 (with-eval-after-load 'recentf
1650 (add-to-list 'recentf-exclude gnus-home-directory)))
1651
1652(use-feature gnus-art
1653 :config
1654 (setq
1655 gnus-visible-headers
1656 (concat gnus-visible-headers "\\|^List-Id:\\|^X-RT-Originator:\\|^User-Agent:")
1657 gnus-sorted-header-list
1658 '("^From:" "^Subject:" "^Summary:" "^Keywords:"
1659 "^Followup-To:" "^To:" "^Cc:" "X-RT-Originator"
1660 "^Newsgroups:" "List-Id:" "^Organization:"
1661 "^User-Agent:" "^Date:")
1662 ;; local-lapsed article dates
1663 ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11
1664 gnus-article-date-headers '(user-defined)
1665 gnus-article-time-format
1666 (lambda (time)
1667 (let* ((date (format-time-string "%a, %d %b %Y %T %z" time))
1668 (local (article-make-date-line date 'local))
1669 (combined-lapsed (article-make-date-line date
1670 'combined-lapsed))
1671 (lapsed (progn
1672 (string-match " (.+" combined-lapsed)
1673 (match-string 0 combined-lapsed))))
1674 (concat local lapsed))))
1675 (bind-keys
1676 :map gnus-article-mode-map
1677 ("M-L" . org-store-link)))
1678
1679(use-feature gnus-sum
1680 :bind (:map gnus-summary-mode-map
1681 :prefix-map a/gnus-summary-prefix-map
1682 :prefix "v"
1683 ("r" . gnus-summary-reply)
1684 ("w" . gnus-summary-wide-reply)
1685 ("v" . gnus-summary-show-raw-article))
1686 :config
1687 (bind-keys
1688 :map gnus-summary-mode-map
1689 ("M-L" . org-store-link))
1690 :hook (gnus-summary-mode . a/no-mouse-autoselect-window))
1691
1692(use-feature gnus-msg
1693 :config
1694 (setq gnus-posting-styles
1695 '((".*"
1696 (address "amin@bndl.org")
1697 (body "\nBest,\n")
1698 (eval (setq a/message-cite-say-hi t)))
1699 ("gnu.*"
1700 (address "bandali@gnu.org")
1701 (eval (set (make-local-variable 'message-user-fqdn) "fencepost.gnu.org")))
1702 ((header "subject" "ThankCRM")
1703 (to "webmasters-comment@gnu.org")
1704 (body "Added to 2019supporters.html.\n\nMoving to campaigns.\n\n-amin\n")
1705 (eval (setq a/message-cite-say-hi nil)))
63c1969d 1706 ("nnimap\\+uw:.*"
41d290a2 1707 (address "abandali@uwaterloo.ca")
63c1969d
AB
1708 (gcc "\"nnimap+uw:Sent Items\""))
1709 ("nnimap\\+csc:.*"
41d290a2 1710 (address "abandali@csclub.uwaterloo.ca")
63c1969d 1711 (gcc "nnimap+csc:Sent")))))
41d290a2
AB
1712
1713(use-feature gnus-topic
1714 :hook (gnus-group-mode . gnus-topic-mode)
1715 :config (setq gnus-topic-line-format "%i[ %A: %(%{%n%}%) ]%v\n"))
1716
1717(use-feature gnus-agent
1718 :config
1719 (setq gnus-agent-synchronize-flags 'ask)
1720 :hook (gnus-group-mode . gnus-agent-mode))
1721
1722(use-feature gnus-group
1723 :config
1724 (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)"))
1725
f485f78e
AB
1726(use-feature gnus-win
1727 :config
1728 (setq gnus-use-full-window nil))
1729
348511ef
AB
1730(use-feature gnus-dired
1731 :commands gnus-dired-mode
1732 :init
1733 (add-hook 'dired-mode-hook 'gnus-dired-mode))
1734
41d290a2
AB
1735(use-feature mm-decode
1736 :config
1737 (setq mm-discouraged-alternatives '("text/html" "text/richtext")))
1738
1739(use-feature sendmail
1740 :config
1741 (setq sendmail-program "/usr/bin/msmtp"
1742 ;; message-sendmail-extra-arguments '("-v" "-d")
1743 mail-specify-envelope-from t
1744 mail-envelope-from 'header))
1745
1746(use-feature message
1747 :config
1748 ;; redefine for a simplified In-Reply-To header
1749 ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67)
1750 (defun message-make-in-reply-to ()
1751 "Return the In-Reply-To header for this message."
1752 (when message-reply-headers
1753 (let ((from (mail-header-from message-reply-headers))
1754 (msg-id (mail-header-id message-reply-headers)))
1755 (when from
1756 msg-id))))
1757
1758 (defconst a/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:")
1759 (defconst message-cite-style-bandali
1760 '((message-cite-function 'message-cite-original)
1761 (message-citation-line-function 'message-insert-formatted-citation-line)
1762 (message-cite-reply-position 'traditional)
1763 (message-yank-prefix "> ")
1764 (message-yank-cited-prefix ">")
1765 (message-yank-empty-prefix ">")
1766 (message-citation-line-format
1767 (if a/message-cite-say-hi
1768 (concat "Hi %F,\n\n" a/message-cite-style-format)
1769 a/message-cite-style-format)))
1770 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
1771 (setq ;; message-cite-style 'message-cite-style-bandali
1772 message-kill-buffer-on-exit t
1773 message-send-mail-function 'message-send-mail-with-sendmail
1774 message-sendmail-envelope-from 'header
1775 message-subscribed-address-functions
1776 '(gnus-find-subscribed-addresses)
1777 message-dont-reply-to-names
1778 "\\(\\(amin@bndl\\.org\\)\\|\\(.*@\\(aminb\\|amin\\.bndl\\)\\.org\\)\\|\\(\\(bandali\\|aminb?\\|mab\\)@gnu\\.org\\)\\|\\(a\\(min\\.\\)?bandali@uwaterloo\\.ca\\)\\|\\(abandali@csclub\\.uwaterloo\\.ca\\)\\)")
1779 (require 'company-ebdb)
1780 :hook (;; (message-setup . mml-secure-message-sign-pgpmime)
1781 (message-mode . flyspell-mode)
1782 (message-mode . (lambda ()
1783 ;; (setq fill-column 65
1784 ;; message-fill-column 65)
1785 (make-local-variable 'company-idle-delay)
1786 (setq company-idle-delay 0.2))))
1787 ;; :custom-face
1788 ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
1789 ;; (message-header-to ((t (:foreground "#111" :weight normal))))
1790 ;; (message-header-cc ((t (:foreground "#333" :weight normal))))
1791 )
1792
1793(with-eval-after-load 'mml-sec
1794 (setq mml-secure-openpgp-encrypt-to-self t
1795 mml-secure-openpgp-sign-with-sender t))
1796
1797(use-feature footnote
1798 :after message
1799 ;; :config
1800 ;; (setq footnote-start-tag ""
1801 ;; footnote-end-tag ""
1802 ;; footnote-style 'unicode)
1803 :bind
1804 (:map message-mode-map
1805 :prefix-map a/footnote-prefix-map
1806 :prefix "C-c f"
1807 ("a" . footnote-add-footnote)
1808 ("b" . footnote-back-to-message)
1809 ("c" . footnote-cycle-style)
1810 ("d" . footnote-delete-footnote)
1811 ("g" . footnote-goto-footnote)
1812 ("r" . footnote-renumber-footnotes)
1813 ("s" . footnote-set-style)))
1814
1815(use-package ebdb
1816 :straight (:host github :repo "girzel/ebdb")
1817 :after gnus
1818 :bind (:map gnus-group-mode-map ("e" . ebdb))
1819 :config
1820 (setq ebdb-sources (no-littering-expand-var-file-name "ebdb"))
1821 (with-eval-after-load 'swiper
1822 (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t)))
1823
1824(use-feature ebdb-com
1825 :after ebdb)
1826
1827;; (use-package ebdb-complete
1828;; :after ebdb
1829;; :config
1830;; (ebdb-complete-enable))
1831
1832(use-package company-ebdb
1833 :config
1834 (defun company-ebdb--post-complete (_) nil))
1835
1836(use-feature ebdb-gnus
1837 :after ebdb
1838 :custom
1839 (ebdb-gnus-window-configuration
1840 '(article
1841 (vertical 1.0
1842 (summary 0.25 point)
1843 (horizontal 1.0
1844 (article 1.0)
1845 (ebdb-gnus 0.3))))))
1846
1847(use-feature ebdb-mua
1848 :after ebdb
1849 ;; :custom (ebdb-mua-pop-up nil)
1850 )
1851
1852;; (use-package ebdb-message
1853;; :after ebdb)
1854
1855
1856;; (use-package ebdb-vcard
1857;; :after ebdb)
1858
1859(use-package message-x)
1860
b57457b2
AB
1861(comment
1862 (use-package message-x
1863 :custom
1864 (message-x-completion-alist
1865 (quote
1866 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address)
1867 ((if
1868 (boundp
1869 (quote message-newgroups-header-regexp))
1870 message-newgroups-header-regexp message-newsgroups-header-regexp)
1871 . message-expand-group))))))
1872
1873(comment
1874 (use-package gnus-harvest
1875 :commands gnus-harvest-install
1876 :demand t
1877 :config
1878 (if (featurep 'message-x)
1879 (gnus-harvest-install 'message-x)
1880 (gnus-harvest-install))))
1881
1882\f
1883;;; IRC
1884
41d290a2
AB
1885(use-package znc
1886 :straight (:host nil :repo "https://git.bndl.org/amin/znc.el")
1887 :bind (("C-c a e e" . znc-erc)
1888 ("C-c a e a" . znc-all))
1889 :config
1890 (let ((pwd (let ((auth (auth-source-search :host "znca")))
1891 (cond
1892 ((null auth) (error "Couldn't find znca's authinfo"))
1893 (t (funcall (plist-get (car auth) :secret)))))))
1894 (setq znc-servers
1895 `(("znc.bndl.org" 1337 t
1896 ((freenode "amin/freenode" ,pwd)))
1897 ("znc.bndl.org" 1337 t
1898 ((moznet "amin/moznet" ,pwd)))))))
1899
b57457b2
AB
1900\f
1901;;; Post initialization
1902
41d290a2
AB
1903(message "Loading %s...done (%.3fs)" user-init-file
1904 (float-time (time-subtract (current-time)
1905 a/before-user-init-time)))
1906
1907;;; init.el ends here