1 ;;; init.el --- bandali's emacs configuration -*- lexical-binding: t -*-
3 ;; Copyright (C) 2018-2019 Amin Bandali <bandali@gnu.org>
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.
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.
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/>.
20 ;; GNU Emacs configuration of Amin Bandali, computer scientist,
21 ;; Free Software activist, and GNU maintainer & webmaster. Packages
22 ;; are installed through GNU Guix for a fully reproducible setup.
23 ;; Before switching to Guix, I used straight.el, and before that Borg.
25 ;; Over the years, I've taken inspiration from configurations of many
26 ;; great people. Some that I can remember off the top of my head are:
28 ;; - https://github.com/dieggsy/dotfiles
29 ;; - https://github.com/dakra/dmacs
30 ;; - http://pages.sachachua.com/.emacs.d/Sacha.html
31 ;; - https://github.com/dakrone/eos
32 ;; - http://doc.rix.si/cce/cce.html
33 ;; - https://github.com/jwiegley/dot-emacs
34 ;; - https://github.com/wasamasa/dotemacs
35 ;; - https://github.com/hlissner/doom-emacs
39 ;;; Emacs initialization
41 (defvar b
/before-user-init-time
(current-time)
42 "Value of `current-time' when Emacs begins loading `user-init-file'.")
43 (defvar b
/emacs-initialized nil
44 "Whether Emacs has been initialized.")
46 (when (not (bound-and-true-p b
/emacs-initialized
))
47 (message "Loading Emacs...done (%.3fs)"
48 (float-time (time-subtract b
/before-user-init-time
51 ;; temporarily increase `gc-cons-threshhold' and `gc-cons-percentage'
52 ;; during startup to reduce garbage collection frequency. clearing
53 ;; `file-name-handler-alist' seems to help reduce startup time too.
54 (defvar b
/gc-cons-threshold gc-cons-threshold
)
55 (defvar b
/gc-cons-percentage gc-cons-percentage
)
56 (defvar b
/file-name-handler-alist file-name-handler-alist
)
57 (setq gc-cons-threshold
(* 30 1024 1024) ; 30 MiB
58 gc-cons-percentage
0.6
59 file-name-handler-alist nil
60 ;; sidesteps a bug when profiling with esup
61 esup-child-profile-require-level
0)
63 ;; set them back to their defaults once we're done initializing
65 "My post-initialize function, run after loading `user-init-file'."
66 (setq b
/emacs-initialized t
67 gc-cons-threshold b
/gc-cons-threshold
68 gc-cons-percentage b
/gc-cons-percentage
69 file-name-handler-alist b
/file-name-handler-alist
)
70 (with-eval-after-load 'exwm-workspace
77 "[%s]" (number-to-string
78 exwm-workspace-current-index
))))))))
79 (add-hook 'after-init-hook
#'b
/post-init
)
81 ;; increase number of lines kept in *Messages* log
82 (setq message-log-max
20000)
84 ;; optionally, uncomment to supress some byte-compiler warnings
85 ;; (see C-h v byte-compile-warnings RET for more info)
86 ;; (setq byte-compile-warnings
87 ;; '(not free-vars unresolved noruntime lexical make-local))
92 (setq user-full-name
"Amin Bandali"
93 user-mail-address
"bandali@gnu.org")
98 ;; useful for commenting out multiple sexps at a time
99 (defmacro comment
(&rest _
)
100 "Comment out one or more s-expressions."
101 (declare (indent defun
))
105 ;;; Package management
107 ;; No package.el (for emacs 26 and before)
108 (when (version< emacs-version
"27")
109 (setq package-enable-at-startup nil
)
110 ;; (package-initialize)
112 ;; for emacs 27 and later, we use early-init.el. see
113 ;; https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=24acb31c04b4048b85311d794e600ecd7ce60d3b
117 (if nil
; set to t when need to debug init
119 (setq use-package-verbose t
120 use-package-expand-minimally nil
121 use-package-compute-statistics t
123 (require 'use-package
))
124 (setq use-package-verbose nil
125 use-package-expand-minimally t
))
127 (setq use-package-always-defer t
)
133 (defvar b
/exwm-p
(string= (system-name) "chaman")
134 "Whether or not we will be using `exwm'.")
136 ;; keep ~/.emacs.d clean
137 (use-package no-littering
140 (defalias 'b
/etc
'no-littering-expand-etc-file-name
)
141 (defalias 'b
/var
'no-littering-expand-var-file-name
))
143 ;; separate custom file (don't want it mixing with init.el)
147 (setq custom-file
(b/etc
"custom.el"))
148 (when (file-exists-p custom-file
)
150 ;; while at it, treat themes as safe
151 (setf custom-safe-themes t
)
152 ;; only one custom theme at a time
154 (defadvice load-theme
(before clear-previous-themes activate
)
155 "Clear existing theme settings instead of layering them"
156 (mapc #'disable-theme custom-enabled-themes
))))
158 ;; load the secrets file if it exists, otherwise show a warning
161 (load (b/etc
"secrets"))))
163 ;; start up emacs server. see
164 ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server
167 :config
(or (server-running-p) (server-mode)))
176 (defmacro b
/setq-every
(value &rest vars
)
177 "Set all the variables from VARS to value VALUE."
178 (declare (indent defun
) (debug t
))
179 `(progn ,@(mapcar (lambda (x) (list 'setq x value
)) vars
)))
181 (defun b/start-process
(program &rest args
)
182 "Same as `start-process', but doesn't bother about name and buffer."
183 (let ((process-name (concat program
"_process"))
184 (buffer-name (generate-new-buffer-name
185 (concat program
"_output"))))
186 (apply #'start-process
187 process-name buffer-name program args
)))
189 (defun b/dired-start-process
(program &optional args
)
190 "Open current file with a PROGRAM."
191 ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can
192 ;; be nil, so remove it).
193 (apply #'b
/start-process
195 (remove nil
(list args
(dired-get-file-for-visit)))))
197 (defun b/add-elisp-section
()
201 (insert "\n\f\n;;; "))
203 ;; (defvar b/fill-column 47
204 ;; "My custom `fill-column'.")
206 (defconst b
/asterism
"* * *")
208 (defun b/insert-asterism
()
209 "Insert a centred asterism."
214 (make-string (floor (/ (- fill-column
(length b
/asterism
)) 2))
219 (defun b/no-mouse-autoselect-window
()
220 "Conveniently disable `focus-follows-mouse'.
221 For disabling the behaviour for certain buffers and/or modes."
222 (make-local-variable 'mouse-autoselect-window
)
223 (setq mouse-autoselect-window nil
))
225 (defun b/kill-current-buffer
()
226 "Kill the current buffer."
227 ;; also see https://redd.it/64xb3q
229 (kill-buffer (current-buffer)))
234 ;;;; C-level customizations
238 enable-recursive-minibuffers t
239 resize-mini-windows t
240 ;; more useful frame titles
241 frame-title-format
'("" invocation-name
" - "
243 (if (buffer-file-name)
244 (abbreviate-file-name (buffer-file-name))
246 ;; i don't feel like jumping out of my chair every now and again; so
247 ;; don't BEEP! at me, emacs
248 ring-bell-function
'ignore
251 ;; scroll-conservatively 10000
253 scroll-conservatively
10
254 scroll-preserve-screen-position
1
255 ;; focus follows mouse
256 mouse-autoselect-window t
)
259 ;; always use space for indentation
267 (dolist (ft (fontset-list))
271 (font-spec :name
"Source Code Pro" :size
14))
275 (font-spec :name
"DejaVu Sans Mono")
282 ;; :name "Symbola monospacified for DejaVu Sans Mono")
288 ;; (font-spec :name "DejaVu Sans Mono")
294 (font-spec :name
"DejaVu Sans Mono" :size
14)
298 ;;;; Elisp-level customizations
304 ;; don't need to see the startup echo area message
305 (advice-add #'display-startup-echo-area-message
:override
#'ignore
)
307 ;; i want *scratch* as my startup buffer
308 (initial-buffer-choice t
)
309 ;; i don't need the default hint
310 (initial-scratch-message nil
)
311 ;; use customizable text-mode as major mode for *scratch*
312 ;; (initial-major-mode 'text-mode)
313 ;; inhibit buffer list when more than 2 files are loaded
314 (inhibit-startup-buffer-menu t
)
315 ;; don't need to see the startup screen or echo area message
316 (inhibit-startup-screen t
)
317 (inhibit-startup-echo-area-message user-login-name
))
323 ;; backups (C-h v make-backup-files RET)
324 (backup-by-copying t
)
326 (delete-old-versions t
)
329 (auto-save-file-name-transforms
330 `((".*" ,(b/var
"auto-save/") t
)))
332 ;; insert newline at the end of files
333 (require-final-newline t
)
335 ;; open read-only file buffers in view-mode
336 ;; (enables niceties like `q' for quit)
339 ;; disable disabled commands
340 (setq disabled-command-function nil
)
342 ;; lazy-person-friendly yes/no prompts
343 (defalias 'yes-or-no-p
#'y-or-n-p
)
345 ;; enable automatic reloading of changed buffers and files
346 (use-package autorevert
349 (global-auto-revert-mode 1)
351 (auto-revert-verbose nil
)
352 (global-auto-revert-non-file-buffers nil
))
354 ;; time and battery in mode-line
360 (display-time-default-load-average nil
)
361 (display-time-format "%a %b %-e %-l:%M%P")
362 (display-time-mail-icon '(image :type xpm
:file
"gnus/gnus-pointer.xpm" :ascent center
))
363 (display-time-use-mail-icon t
))
368 (display-battery-mode)
370 (battery-mode-line-format " %p%% %t"))
376 ;; (fringe-mode '(3 . 1))
382 ;; enable winner-mode (C-h f winner-mode RET)
387 ;; don't display *compilation* buffer on success. based on
388 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
389 ;; instead of the now obsolete `flet'.
390 (defun b/compilation-finish-function
(buffer outstr
)
391 (unless (string-match "finished" outstr
)
392 (switch-to-buffer-other-window buffer
))
395 (setq compilation-finish-functions
#'b
/compilation-finish-function
)
399 (defadvice compilation-start
400 (around inhibit-display
401 (command &optional mode name-function highlight-regexp
))
402 (if (not (string-match "^\\(find\\|grep\\)" command
))
403 (cl-letf (((symbol-function 'display-buffer
) #'ignore
))
404 (save-window-excursion ad-do-it
))
406 (ad-activate 'compilation-start
))
410 ;; allow scrolling in Isearch
411 (isearch-allow-scroll t
)
412 ;; search for non-ASCII characters: i’d like non-ASCII characters such
413 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
414 ;; counterpart. shoutout to
415 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
416 (search-default-mode #'char-fold-to-regexp
))
418 ;; uncomment to extend the above behaviour to query-replace
422 (replace-char-fold t
)))
425 :bind
("C-x v C-=" . vc-ediff
))
430 (vc-git-print-log-follow t
))
433 :config
(add-hook 'ediff-after-quit-hook-internal
'winner-undo
)
434 :custom
((ediff-window-setup-function 'ediff-setup-windows-plain
)
435 (ediff-split-window-function 'split-window-horizontally
)))
437 (use-package face-remap
439 ;; gentler font resizing
440 (text-scale-mode-step 1.05))
445 (setq mouse-wheel-scroll-amount
'(1 ((shift) .
1)) ; one line at a time
446 mouse-wheel-progressive-speed nil
; don't accelerate scrolling
447 mouse-wheel-follow-mouse t
)) ; scroll window under mouse
449 (use-package pixel-scroll
451 :config
(pixel-scroll-mode 1))
453 (use-package epg-config
455 ;; ask for GPG passphrase in minibuffer
456 ;; this will fail if gpg>=2.1 is not available
457 (if (version< "27" emacs-version
)
458 (setq epg-pinentry-mode
'loopback
)
459 (setq epa-pinentry-mode
'loopback
))
461 (epg-gpg-program (executable-find "gpg")))
466 (use-package pinentry
468 :after
(epa epg server
)
470 ;; workaround for systemd-based distros:
471 ;; (setq pinentry--socket-dir server-socket-dir)
474 (use-package auth-source
476 (auth-sources '("~/.authinfo.gpg"))
477 (authinfo-hidden (regexp-opt '("password" "client-secret" "token"))))
485 ("C-c e b" . eval-buffer
)
486 ("C-c e e" . eval-last-sexp
)
487 ("C-c e r" . eval-region
)
489 ("C-c e i" . emacs-init-time
)
490 ("C-c e u" . emacs-uptime
)
491 ("C-c e v" . emacs-version
)
493 ("C-c F m" . make-frame-command
)
494 ("C-c F d" . delete-frame
)
495 ("C-c F D" . server-edit
)
497 ("C-S-h C" . describe-char
)
498 ("C-S-h F" . describe-face
)
500 ("C-x k" . b
/kill-current-buffer
)
501 ("C-x K" . kill-buffer
)
502 ("C-x s" . save-buffer
)
503 ("C-x S" . save-some-buffers
)
505 :map emacs-lisp-mode-map
506 ("<C-return>" . b
/add-elisp-section
))
508 (when (display-graphic-p)
509 (unbind-key "C-z" global-map
))
512 ;; for back and forward mouse keys
513 ("<XF86Back>" . previous-buffer
)
514 ("<mouse-8>" . previous-buffer
)
515 ;; ("<drag-mouse-8>" . previous-buffer)
516 ("<XF86Forward>" . next-buffer
)
517 ("<mouse-9>" . next-buffer
)
518 ;; ("<drag-mouse-9>" . next-buffer)
519 ;; ("<drag-mouse-2>" . kill-this-buffer)
520 ;; ("<drag-mouse-3>" . switch-to-buffer)
524 ;;; Essential packages
530 ;; make class name the buffer name, truncating beyond 60 characters
531 (defun b/exwm-rename-buffer
()
533 (exwm-workspace-rename-buffer
534 (concat exwm-class-name
":"
535 (if (<= (length exwm-title
) 60) exwm-title
536 (concat (substring exwm-title
0 59) "...")))))
539 :hook
((exwm-update-class . b
/exwm-rename-buffer
)
540 (exwm-update-title . b
/exwm-rename-buffer
)))
542 (use-package exwm-config
545 :hook
(exwm-init . exwm-config--fix
/ido-buffer-window-other-frame
))
547 (use-package exwm-input
551 (defun b/exwm-ws-prev-index
()
552 "Return the index for the previous EXWM workspace, wrapping
554 (if (= exwm-workspace-current-index
0)
555 (1- exwm-workspace-number
)
556 (1- exwm-workspace-current-index
)))
558 (defun b/exwm-ws-next-index
()
559 "Return the index for the next EXWM workspace, wrapping
561 (if (= exwm-workspace-current-index
562 (1- exwm-workspace-number
))
564 (1+ exwm-workspace-current-index
)))
566 ;; shorten 'C-c C-q' to 'C-q'
567 (define-key exwm-mode-map
[?\C-q
] #'exwm-input-send-next-key
)
569 (setq exwm-workspace-number
4
570 exwm-input-global-keys
571 `(([?\s-R
] . exwm-reset
)
572 ([?\s-
\\] . exwm-workspace-switch
)
574 ([?\S-\s-\s
] .
(lambda (command)
576 (list (read-shell-command "➜ ")))
577 (start-process-shell-command
578 command nil command
)))
579 ([s-return
] .
(lambda ()
581 (start-process "" nil
"urxvt")))
582 ([?\C-\s-\s
] . counsel-linux-app
)
583 ([?\M-\s-\s
] .
(lambda ()
585 (start-process-shell-command
586 "rofi-pass" nil
"rofi-pass")))
587 ([?\s-h
] . windmove-left
)
588 ([?\s-j
] . windmove-down
)
589 ([?\s-k
] . windmove-up
)
590 ([?\s-l
] . windmove-right
)
591 ([?\s-H
] . windmove-swap-states-left
)
592 ([?\s-J
] . windmove-swap-states-down
)
593 ([?\s-K
] . windmove-swap-states-up
)
594 ([?\s-L
] . windmove-swap-states-right
)
595 ([?\M-\s-h
] . shrink-window-horizontally
)
596 ([?\M-\s-l
] . enlarge-window-horizontally
)
597 ([?\M-\s-k
] . shrink-window
)
598 ([?\M-\s-j
] . enlarge-window
)
599 ([?\s-\
[] .
(lambda ()
601 (exwm-workspace-switch-create
602 (b/exwm-ws-prev-index
))))
603 ([?\s-\
]] .
(lambda ()
605 (exwm-workspace-switch-create
606 (b/exwm-ws-next-index
))))
607 ([?\s-
{] .
(lambda ()
609 (exwm-workspace-move-window
610 (b/exwm-ws-prev-index
))))
611 ([?\s-
}] .
(lambda ()
613 (exwm-workspace-move-window
614 (b/exwm-ws-next-index
))))
615 ,@(mapcar (lambda (i)
616 `(,(kbd (format "s-%d" i
)) .
619 (exwm-workspace-switch-create ,i
))))
620 (number-sequence 0 (1- exwm-workspace-number
)))
621 ([?\s-t
] . exwm-floating-toggle-floating
)
622 ([?\s-f
] . exwm-layout-toggle-fullscreen
)
623 ([?\s-W
] .
(lambda ()
625 (kill-buffer (current-buffer))))
626 ([?\s-Q
] .
(lambda ()
628 (exwm-manage--kill-client)))
629 ([?\s-
\'] .
(lambda ()
631 (start-process-shell-command
632 "rofi-light" nil
"rofi-light")))
636 (start-process "" nil "amixer" "set" "'Master',0" "toggle")))
637 ([XF86AudioLowerVolume] .
641 "" nil "amixer" "set" "'Master',0" "5%-")))
642 ([XF86AudioRaiseVolume] .
646 "" nil "amixer" "set" "'Master',0" "5%+")))
650 (start-process "" nil "mpc" "toggle")))
654 (start-process "" nil "mpc" "prev")))
658 (start-process "" nil "mpc" "next")))
662 (start-process "" nil "dm-tool" "lock")))
663 ([\s-XF86Back] . previous-buffer)
664 ([\s-XF86Forward] . next-buffer)))
666 ;; Line-editing shortcuts
667 (setq exwm-input-simulation-keys
672 ([?\M-f] . [C-right])
680 ([?\C-k] . [S-end ?\C-x])
687 ([?\M-d] . [C-S-right ?\C-x])
688 ([?\M-\d] . [C-S-left ?\C-x])
695 ([?\C-g] . [escape]))))
697 (use-package exwm-manage
701 (exwm-manage-finish . (lambda ()
702 (when exwm-class-name
704 ((string= exwm-class-name "IceCat")
705 (exwm-input-set-local-simulation-keys
706 `(,@exwm-input-simulation-keys
707 ([?\C-\S-d] . [?\C-d]))))
708 ((string= exwm-class-name "URxvt")
709 (exwm-input-set-local-simulation-keys
710 '(([?\C-c ?\C-c] . [?\C-c])
711 ([?\C-c ?\C-u] . [?\C-u]))))
712 ((string= exwm-class-name "Zathura")
713 (exwm-input-set-local-simulation-keys
715 ([?\C-n] . [C-down])))))))))
717 (use-package exwm-randr
723 (exwm-randr-workspace-monitor-plist '(1 "VGA-1")))
725 (use-package exwm-systemtray
729 (exwm-systemtray-enable))
731 (use-package exwm-workspace)
733 (use-package exwm-edit
737 ;; use the org-plus-contrib package to get the whole deal
738 (use-package org-plus-contrib)
743 (setq org-src-tab-acts-natively t
744 org-src-preserve-indentation nil
745 org-edit-src-content-indentation 0
746 org-link-email-description-format "Email %c: %s" ; %.30s
747 org-highlight-latex-and-related '(entities)
748 org-use-speed-commands t
749 org-startup-folded 'content
750 org-catch-invisible-edits 'show-and-error
752 (when (version< org-version "9.3")
753 (setq org-email-link-description-format
754 org-link-email-description-format))
755 (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t)
756 (add-to-list 'org-modules 'org-habit)
758 (("C-c a o a" . org-agenda)
760 ("M-L" . org-insert-last-stored-link)
761 ("M-O" . org-toggle-link-display))
762 :hook ((org-mode . org-indent-mode)
763 (org-mode . auto-fill-mode)
764 (org-mode . flyspell-mode))
766 (org-pretty-entities t)
767 (org-agenda-files '("~/usr/org/todos/personal.org"
768 "~/usr/org/todos/habits.org"
769 "~/src/git/masters-thesis/todo.org"))
770 (org-agenda-start-on-weekday 0)
771 (org-agenda-time-leading-zero t)
772 (org-habit-graph-column 44)
773 (org-latex-packages-alist '(("" "listings") ("" "color")))
775 '(org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21"))))
776 '(org-block ((t (:background "#1d1f21"))))
777 '(org-latex-and-related ((t (:foreground "#b294bb")))))
779 (use-package ox-latex
782 (setq org-latex-listings 'listings
783 ;; org-latex-prefer-user-labels t
785 (add-to-list 'org-latex-classes
786 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
787 ("\\section{%s}" . "\\section*{%s}")
788 ("\\subsection{%s}" . "\\subsection*{%s}")
789 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
790 ("\\paragraph{%s}" . "\\paragraph*{%s}")
791 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
793 (require 'ox-beamer))
795 (use-package ox-extra
797 (ox-extras-activate '(latex-header-blocks ignore-headlines)))
799 ;; asynchronous tangle, using emacs-async to asynchronously tangle an
800 ;; org file. closely inspired by
801 ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
802 (with-eval-after-load 'org
803 (defvar b/show-async-tangle-results nil
804 "Keep *emacs* async buffers around for later inspection.")
806 (defvar b/show-async-tangle-time nil
807 "Show the time spent tangling the file.")
809 (defun b/async-babel-tangle ()
810 "Tangle org file asynchronously."
812 (let* ((file-tangle-start-time (current-time))
813 (file (buffer-file-name))
814 (file-nodir (file-name-nondirectory file))
815 ;; (async-quiet-switch "-q")
816 (file-noext (file-name-sans-extension file)))
820 (org-babel-tangle-file ,file))
821 (unless b/show-async-tangle-results
824 (message "Tangled %s%s"
826 (if b/show-async-tangle-time
828 (float-time (time-subtract (current-time)
829 ',file-tangle-start-time)))
831 (message "Tangling %s failed" ,file-nodir))))))))
834 'safe-local-variable-values
835 '(eval add-hook 'after-save-hook #'b/async-babel-tangle 'append 'local))
837 ;; *the* right way to do git
840 :bind (("C-x g" . magit-status)
841 ("C-c g g" . magit-status)
842 ("C-c g b" . magit-blame-addition)
843 ("C-c g l" . magit-log-buffer-file))
845 (magit-add-section-hook 'magit-status-sections-hook
846 'magit-insert-modules
847 'magit-insert-stashes
849 ;; (magit-add-section-hook 'magit-status-sections-hook
850 ;; 'magit-insert-ignored-files
851 ;; 'magit-insert-untracked-files
853 (setq magit-repository-directories '(("~/" . 0)
855 (nconc magit-section-initial-visibility-alist
856 '(([unpulled status] . show)
857 ([unpushed status] . show)))
859 (magit-diff-refine-hunk t)
860 (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1)
861 ;; (magit-completing-read-function 'magit-ido-completing-read)
862 :custom-face (magit-diff-file-heading ((t (:weight normal)))))
864 ;; recently opened files
868 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
872 (recentf-max-saved-items 2000))
874 ;; smart M-x enhancement (needed by counsel for history)
875 ;; (use-package smex)
878 ("C-c f ." . find-file)
879 ("C-c f d" . find-name-dired)
880 ("C-c f l" . find-library)
881 ;; ("C-c f r" . recentf-open-files)
882 ("C-c x" . execute-extended-command))
888 (:map ido-common-completion-map
889 ([escape] . minibuffer-keyboard-quit)
890 ("DEL" . b/ido-backspace))
893 (defun b/ido-backspace ()
894 "Forward to `backward-delete-char'. On error (read-only), quit."
897 (backward-delete-char 1)
899 (minibuffer-keyboard-quit))))
903 (ido-enable-flex-matching t)
904 ;; (ido-enable-regexp t)
905 ;; (ido-enable-prefix t)
906 (ido-max-window-height 10)
907 (ido-use-virtual-buffers t))
909 (use-package ido-vertical-mode
912 (ido-vertical-mode 1)
914 (ido-vertical-define-keys 'C-n-C-p-up-and-down)
915 (ido-vertical-show-count t))
917 (use-package ido-completing-read+
921 (ido-ubiquitous-mode 1))
923 (use-package crm-custom
928 (use-package icomplete
941 (:map ivy-minibuffer-map
942 ([escape] . keyboard-escape-quit)
943 ([S-up] . ivy-previous-history-element)
944 ([S-down] . ivy-next-history-element)
945 ("DEL" . ivy-backward-delete-char))
949 ivy-use-virtual-buffers t
950 ivy-virtual-abbreviate 'abbreviate
951 ivy-count-format "%d/%d ")
953 (defvar b/ivy-ignore-buffer-modes '(magit-mode erc-mode dired-mode))
954 (defun b/ivy-ignore-buffer-p (str)
955 "Return non-nil if str names a buffer with a major mode
956 derived from one of `b/ivy-ignore-buffer-modes'.
958 This function is intended for use with `ivy-ignore-buffers'."
959 (let* ((buf (get-buffer str))
960 (mode (and buf (buffer-local-value 'major-mode buf))))
962 (apply #'provided-mode-derived-p mode b/ivy-ignore-buffer-modes))))
963 (add-to-list 'ivy-ignore-buffers 'b/ivy-ignore-buffer-p)
967 (ivy-minibuffer-match-face-1 ((t (:background "#eeeeee"))))
968 (ivy-minibuffer-match-face-2 ((t (:background "#e7e7e7" :weight bold))))
969 (ivy-minibuffer-match-face-3 ((t (:background "light goldenrod" :weight semi-bold))))
970 (ivy-minibuffer-match-face-4 ((t (:background "misty rose" :weight semi-bold))))
971 (ivy-current-match ((((class color) (background light))
972 :background "#d7d7d7" :foreground "black")
973 (((class color) (background dark))
974 :background "#65a7e2" :foreground "black"))))
979 :bind (("C-S-s" . swiper-isearch)))
984 :bind (("C-c f r" . counsel-recentf)
985 :map minibuffer-local-map
986 ("C-r" . counsel-minibuffer-history))
989 (defalias 'locate #'counsel-locate))
994 :bind ("C-c a s e" . eshell)
996 (eval-when-compile (defvar eshell-prompt-regexp))
997 (defun b/eshell-quit-or-delete-char (arg)
999 (if (and (eolp) (looking-back eshell-prompt-regexp nil))
1000 (eshell-life-is-too-much)
1003 (defun b/eshell-clear ()
1005 (let ((inhibit-read-only t))
1007 (eshell-send-input))
1009 (defun b/eshell-setup ()
1010 (make-local-variable 'company-idle-delay)
1011 (defvar company-idle-delay)
1012 (setq company-idle-delay nil)
1013 (bind-keys :map eshell-mode-map
1014 ("C-d" . b/eshell-quit-or-delete-char)
1015 ("C-S-l" . b/eshell-clear)
1016 ("M-r" . counsel-esh-history)
1017 ;; ([tab] . company-complete)
1019 (if (version< "27" emacs-version)
1020 (bind-keys :map eshell-hist-mode-map
1021 ("M-r" . counsel-esh-history))
1022 (bind-keys :map eshell-mode-map
1023 ("M-r" . counsel-esh-history))))
1025 :hook (eshell-mode . b/eshell-setup)
1027 (eshell-hist-ignoredups t)
1028 (eshell-input-filter 'eshell-input-filter-initial-space))
1030 (use-package ibuffer
1032 (("C-x C-b" . ibuffer)
1033 :map ibuffer-mode-map
1034 ("P" . ibuffer-backward-filter-group)
1035 ("N" . ibuffer-forward-filter-group)
1036 ("M-p" . ibuffer-do-print)
1037 ("M-n" . ibuffer-do-shell-command-pipe-replace))
1039 ;; Use human readable Size column instead of original one
1040 (define-ibuffer-column size-h
1041 (:name "Size" :inline t)
1043 ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0)))
1044 ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0)))
1045 ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0)))
1046 (t (format "%8d" (buffer-size)))))
1048 (ibuffer-saved-filter-groups
1050 ("dired" (mode . dired-mode))
1051 ("org" (mode . org-mode))
1054 (mode . gnus-group-mode)
1055 (mode . gnus-summary-mode)
1056 (mode . gnus-article-mode)
1057 ;; not really, but...
1058 (mode . message-mode)))
1061 ;; (mode . web-mode)
1068 (mode . eshell-mode)
1070 (mode . term-mode)))
1073 (mode . python-mode)
1077 (mode . emacs-lisp-mode)
1078 (mode . scheme-mode)
1079 (mode . haskell-mode)
1082 (mode . alloy-mode)))
1085 (mode . bibtex-mode)
1086 (mode . latex-mode)))
1089 (name . "^\\*scratch\\*$")
1090 (name . "^\\*Messages\\*$")))
1091 ("exwm" (mode . exwm-mode))
1092 ("erc" (mode . erc-mode)))))
1094 '((mark modified read-only locked " "
1095 (name 72 72 :left :elide)
1097 (size-h 9 -1 :right)
1099 (mode 16 16 :left :elide)
1100 " " filename-and-process)
1104 :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
1106 (use-package outline
1108 :hook (prog-mode . outline-minor-mode)
1111 outline-minor-mode-map
1112 ("<s-tab>" . outline-toggle-children)
1113 ("M-p" . outline-previous-visible-heading)
1114 ("M-n" . outline-next-visible-heading)
1115 :prefix-map b/outline-prefix-map
1117 ("TAB" . outline-toggle-children)
1118 ("a" . outline-hide-body)
1119 ("H" . outline-hide-body)
1120 ("S" . outline-show-all)
1121 ("h" . outline-hide-subtree)
1122 ("s" . outline-show-subtree)))
1124 (use-package ls-lisp
1125 :custom (ls-lisp-dirs-first t))
1129 (setq dired-dwim-target t
1130 dired-listing-switches "-alh"
1131 ls-lisp-use-insert-directory-program nil)
1133 ;; easily diff 2 marked files
1134 ;; https://oremacs.com/2017/03/18/dired-ediff/
1135 (defun dired-ediff-files ()
1137 (require 'dired-aux)
1138 (defvar ediff-after-quit-hook-internal)
1139 (let ((files (dired-get-marked-files))
1140 (wnd (current-window-configuration)))
1141 (if (<= (length files) 2)
1142 (let ((file1 (car files))
1143 (file2 (if (cdr files)
1147 (dired-dwim-target-directory)))))
1148 (if (file-newer-than-file-p file1 file2)
1149 (ediff-files file2 file1)
1150 (ediff-files file1 file2))
1151 (add-hook 'ediff-after-quit-hook-internal
1153 (setq ediff-after-quit-hook-internal nil)
1154 (set-window-configuration wnd))))
1155 (error "no more than 2 files should be marked"))))
1158 (setq dired-guess-shell-alist-user
1159 '(("\\.pdf\\'" "evince" "zathura" "okular")
1160 ("\\.doc\\'" "libreoffice")
1161 ("\\.docx\\'" "libreoffice")
1162 ("\\.ppt\\'" "libreoffice")
1163 ("\\.pptx\\'" "libreoffice")
1164 ("\\.xls\\'" "libreoffice")
1165 ("\\.xlsx\\'" "libreoffice")
1166 ("\\.flac\\'" "mpv")))
1167 :bind (:map dired-mode-map
1168 ("b" . dired-up-directory)
1169 ("E" . dired-ediff-files)
1170 ("e" . dired-toggle-read-only)
1171 ("\\" . dired-hide-details-mode)
1174 (b/dired-start-process "zathura"))))
1175 :hook (dired-mode . dired-hide-details-mode))
1179 (temp-buffer-resize-mode)
1180 (setq help-window-select t))
1184 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
1185 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
1186 (add-to-list 'tramp-default-proxies-alist
1187 (list (regexp-quote (system-name)) nil nil)))
1189 (use-package doc-view
1190 :bind (:map doc-view-mode-map
1191 ("M-RET" . image-previous-line)))
1196 ;; highlight uncommitted changes in the left fringe
1197 (use-package diff-hl
1200 (setq diff-hl-draw-borders nil)
1201 (global-diff-hl-mode)
1202 :hook (magit-post-refresh . diff-hl-magit-post-refresh))
1204 ;; display Lisp objects at point in the echo area
1206 :when (version< "25" emacs-version)
1207 :config (global-eldoc-mode))
1209 ;; highlight matching parens
1212 :config (show-paren-mode))
1214 (use-package elec-pair
1216 :config (electric-pair-mode))
1219 :config (column-number-mode)
1221 ;; Save what I copy into clipboard from other applications into Emacs'
1222 ;; kill-ring, which would allow me to still be able to easily access
1223 ;; it in case I kill (cut or copy) something else inside Emacs before
1224 ;; yanking (pasting) what I'd originally intended to.
1225 (save-interprogram-paste-before-kill t))
1227 ;; save minibuffer history
1228 (use-package savehist
1232 (add-to-list 'savehist-additional-variables 'kill-ring))
1234 ;; automatically save place in files
1235 (use-package saveplace
1236 :when (version< "25" emacs-version)
1237 :config (save-place-mode))
1239 (use-package prog-mode
1240 :config (global-prettify-symbols-mode)
1241 (defun indicate-buffer-boundaries-left ()
1242 (setq indicate-buffer-boundaries 'left))
1243 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
1245 (use-package text-mode
1246 :bind (:map text-mode-map ("C-*" . b/insert-asterism))
1247 :hook ((text-mode . indicate-buffer-boundaries-left)
1248 (text-mode . flyspell-mode)))
1250 (use-package conf-mode
1253 (use-package sh-mode
1256 (use-package company
1259 (:map company-active-map
1260 ([tab] . company-complete-common-or-cycle)
1261 ([escape] . company-abort)
1262 ("C-p" . company-select-previous-or-abort)
1263 ("C-n" . company-select-next-or-abort))
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)
1271 ;; (global-company-mode t)
1274 (use-package flycheck
1276 :hook (prog-mode . flycheck-mode)
1278 (:map flycheck-mode-map
1279 ("M-P" . flycheck-previous-error)
1280 ("M-N" . flycheck-next-error))
1282 ;; Use the load-path from running Emacs when checking elisp files
1283 (setq flycheck-emacs-lisp-load-path 'inherit)
1285 ;; Only flycheck when I actually save the buffer
1286 (setq flycheck-check-syntax-automatically '(mode-enabled save))
1287 :custom (flycheck-mode-line-prefix "flyc"))
1289 (use-package flyspell)
1291 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
1295 ;; ’ can be part of a word
1296 (setq ispell-local-dictionary-alist
1297 `((nil "[[:alpha:]]" "[^[:alpha:]]"
1298 "['\x2019]" nil ("-B") nil utf-8))
1299 ispell-program-name (executable-find "hunspell"))
1300 ;; don't send ’ to the subprocess
1301 (defun endless/replace-apostrophe (args)
1302 (cons (replace-regexp-in-string
1305 (advice-add #'ispell-send-string :filter-args
1306 #'endless/replace-apostrophe)
1308 ;; convert ' back to ’ from the subprocess
1309 (defun endless/replace-quote (args)
1310 (if (not (derived-mode-p 'org-mode))
1312 (cons (replace-regexp-in-string
1315 (advice-add #'ispell-parse-output :filter-args
1316 #'endless/replace-quote))
1319 :hook (text-mode . abbrev-mode))
1322 ;;; Programming modes
1324 (use-package lisp-mode
1326 (defun indent-spaces-mode ()
1327 (setq indent-tabs-mode nil))
1328 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
1331 :hook (emacs-lisp-mode . reveal-mode))
1333 (use-package elisp-mode)
1335 ;; (use-package alloy-mode
1336 ;; :straight (:host github :repo "dwwmmn/alloy-mode")
1337 ;; :mode "\\.\\(als\\|dsh\\)\\'"
1339 ;; (setq alloy-basic-offset 2)
1340 ;; ;; (defun b/alloy-simple-indent (start end)
1341 ;; ;; (interactive "r")
1342 ;; ;; ;; (if (region-active-p)
1343 ;; ;; ;; (indent-rigidly start end alloy-basic-offset)
1345 ;; ;; ;; (indent-rigidly (line-beginning-position)
1346 ;; ;; ;; (line-end-position)
1347 ;; ;; ;; alloy-basic-offset)))
1348 ;; ;; (indent-to (+ (current-column) alloy-basic-offset)))
1349 ;; :bind (:map alloy-mode-map
1350 ;; ("RET" . electric-newline-and-maybe-indent)
1351 ;; ;; ("TAB" . b/alloy-simple-indent)
1352 ;; ("TAB" . indent-for-tab-command))
1353 ;; :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil))))
1355 (eval-when-compile (defvar lean-mode-map))
1356 (use-package lean-mode
1358 :bind (:map lean-mode-map
1359 ("S-SPC" . company-complete))
1361 (require 'lean-input)
1362 (setq default-input-method "Lean"
1363 lean-input-tweak-all '(lean-input-compose
1364 (lean-input-prepend "/")
1365 (lean-input-nonempty))
1366 lean-input-user-translations '(("/" "/")))
1369 (use-package mhtml-mode)
1371 (use-package sgml-mode
1373 (setq sgml-basic-offset 0))
1375 (use-package css-mode
1377 (setq css-indent-offset 2))
1379 (use-package emmet-mode
1380 :after (:any mhtml-mode css-mode sgml-mode)
1381 :bind* (("C-)" . emmet-next-edit-point)
1382 ("C-(" . emmet-prev-edit-point))
1384 (unbind-key "C-j" emmet-mode-keymap)
1385 (setq emmet-move-cursor-between-quotes t)
1386 :hook (css-mode html-mode sgml-mode))
1388 (use-package geiser)
1390 (use-package geiser-guile
1392 (setq geiser-guile-load-path "~/src/git/guix"))
1399 (font-latex-fontify-sectioning 'color)))
1401 (use-package go-mode
1404 (use-package po-mode
1406 (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit))))
1408 (use-package tex-mode
1411 (lambda (p) (string-match "^---?" (car p)))
1412 tex--prettify-symbols-alist)
1413 :hook ((tex-mode . auto-fill-mode)
1414 (tex-mode . flyspell-mode)))
1416 ;; (use-package george-mode
1417 ;; :straight (:host nil :repo "https://git.shemshak.org/amin/george-mode")
1418 ;; :mode "\\.grg\\'")
1423 (add-to-list 'custom-theme-load-path
1425 (convert-standard-filename "lisp") user-emacs-directory))
1426 (load-theme 'tangomod t)
1428 (use-package smart-mode-line
1429 :commands (sml/apply-theme)
1432 ;; thanks, but no thnaks; don't make fixed-width fills.
1433 (defun sml/fill-for-buffer-identification () "")
1434 (setq sml/theme 'tangomod)
1436 (smart-mode-line-enable))
1438 (use-package doom-modeline
1441 :hook (after-init . doom-modeline-init)
1443 (doom-modeline-buffer-file-name-style 'relative-to-project))
1445 (use-package doom-themes)
1451 (setq x-underline-at-descent-line t)
1452 (let ((line (face-attribute 'mode-line :underline)))
1453 (set-face-attribute 'mode-line nil :overline line)
1454 (set-face-attribute 'mode-line-inactive nil :overline line)
1455 (set-face-attribute 'mode-line-inactive nil :underline line)
1456 (set-face-attribute 'mode-line nil :box nil)
1457 (set-face-attribute 'mode-line-inactive nil :box nil)
1458 (set-face-attribute 'mode-line-inactive nil :background "#e1e1e1")) ; d3d7cf
1459 (moody-replace-mode-line-buffer-identification)
1460 (moody-replace-vc-mode))
1462 (use-package mini-modeline
1465 :config (mini-modeline-mode))
1467 (defvar b/org-mode-font-lock-keywords
1468 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
1469 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
1470 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
1471 (4 '(:foreground "#c5c8c6") t))) ; title
1472 "For use with the `doom-tomorrow-night' theme.")
1474 (defun b/lights-on ()
1475 "Enable my favourite light theme."
1477 (mapc #'disable-theme custom-enabled-themes)
1478 (load-theme 'tangomod t)
1479 (when (featurep 'smart-mode-line)
1480 (sml/apply-theme 'tangomod))
1481 (font-lock-remove-keywords
1482 'org-mode b/org-mode-font-lock-keywords)
1483 (when (featurep 'erc-hl-nicks)
1484 (erc-hl-nicks-reset-face-table))
1485 (when (featurep 'exwm-systemtray)
1486 (exwm-systemtray--refresh)))
1488 (defun b/lights-off ()
1491 (mapc #'disable-theme custom-enabled-themes)
1492 (load-theme 'doom-one t)
1493 (when (featurep 'smart-mode-line)
1494 (sml/apply-theme 'automatic))
1495 (font-lock-add-keywords
1496 'org-mode b/org-mode-font-lock-keywords t)
1497 (when (featurep 'erc-hl-nicks)
1498 (erc-hl-nicks-reset-face-table))
1499 (when (featurep 'exwm-systemtray)
1500 (exwm-systemtray--refresh)))
1503 ("C-c t d" . b/lights-off)
1504 ("C-c t l" . b/lights-on))
1507 ;;; Emacs enhancements & auxiliary packages
1510 :config (setq Man-width 80))
1512 (use-package which-key
1515 (which-key-add-key-based-replacements
1516 ;; prefixes for global prefixes and minor modes
1519 "C-x RET" "coding system"
1521 "C-x @" "event modifiers"
1522 "C-x a" "abbrev/expand"
1523 "C-x r" "rectangle/register/bookmark"
1525 "C-x v" "version control"
1529 ;; prefixes for my personal bindings
1531 "C-c a" "applications"
1536 "C-c c" "compile-and-comments"
1542 "C-c m" "multiple-cursors"
1543 "C-c p" "projectile"
1544 "C-c p s" "projectile/search"
1545 "C-c p x" "projectile/execute"
1546 "C-c p 4" "projectile/other-window"
1552 ;; prefixes for major modes
1553 (which-key-add-major-mode-key-based-replacements 'message-mode
1554 "C-c f n" "footnote")
1555 (which-key-add-major-mode-key-based-replacements 'org-mode
1556 "C-c C-v" "org-babel")
1560 (which-key-add-column-padding 5)
1561 (which-key-max-description-length 32))
1563 (use-package crux ; results in Waiting for git... [2 times]
1565 :bind (("C-c d" . crux-duplicate-current-line-or-region)
1566 ("C-c M-d" . crux-duplicate-and-comment-current-line-or-region)
1567 ("C-c f C" . crux-copy-file-preserve-attributes)
1568 ("C-c f D" . crux-delete-file-and-buffer)
1569 ("C-c f R" . crux-rename-file-and-buffer)
1570 ("C-c j" . crux-top-join-line)
1571 ("C-S-j" . crux-top-join-line)))
1574 :bind (("C-a" . mwim-beginning-of-code-or-line)
1575 ("C-e" . mwim-end-of-code-or-line)
1576 ("<home>" . mwim-beginning-of-line-or-code)
1577 ("<end>" . mwim-end-of-line-or-code)))
1579 (use-package projectile
1582 :bind-keymap ("C-c p" . projectile-command-map)
1586 (defun b/projectile-mode-line-fun ()
1587 "Report project name and type in the modeline."
1588 (let ((project-name (projectile-project-name))
1589 (project-type (projectile-project-type)))
1591 projectile-mode-line-prefix
1593 (format ":%s" project-type)
1595 (setq projectile-mode-line-function 'b/projectile-mode-line-fun)
1597 (defun my-projectile-invalidate-cache (&rest _args)
1598 ;; ignore the args to `magit-checkout'
1599 (projectile-invalidate-cache nil))
1601 (eval-after-load 'magit-branch
1603 (advice-add 'magit-checkout
1604 :after #'my-projectile-invalidate-cache)
1605 (advice-add 'magit-branch-and-checkout
1606 :after #'my-projectile-invalidate-cache)))
1608 (projectile-completion-system 'ivy)
1609 (projectile-mode-line-prefix " proj"))
1611 (use-package helpful
1614 (("C-S-h c" . helpful-command)
1615 ("C-S-h f" . helpful-callable) ; helpful-function
1616 ("C-S-h v" . helpful-variable)
1617 ("C-S-h k" . helpful-key)
1618 ("C-S-h p" . helpful-at-point)))
1620 (use-package unkillable-scratch
1623 (unkillable-scratch 1)
1625 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1628 ;; | make pretty boxed quotes like this
1630 (use-package boxquote
1633 (:prefix-map b/boxquote-prefix-map
1635 ("b" . boxquote-buffer)
1636 ("B" . boxquote-insert-buffer)
1637 ("d" . boxquote-defun)
1638 ("F" . boxquote-insert-file)
1639 ("hf" . boxquote-describe-function)
1640 ("hk" . boxquote-describe-key)
1641 ("hv" . boxquote-describe-variable)
1642 ("hw" . boxquote-where-is)
1643 ("k" . boxquote-kill)
1644 ("p" . boxquote-paragraph)
1645 ("q" . boxquote-boxquote)
1646 ("r" . boxquote-region)
1647 ("s" . boxquote-shell-command)
1648 ("t" . boxquote-text)
1649 ("T" . boxquote-title)
1650 ("u" . boxquote-unbox)
1651 ("U" . boxquote-unbox-region)
1652 ("y" . boxquote-yank)
1653 ("M-q" . boxquote-fill-paragraph)
1654 ("M-w" . boxquote-kill-ring-save)))
1656 (use-package orgalist
1657 ;; breaks auto-fill-mode, showing this error:
1658 ;; orgalist--boundaries: Lisp nesting exceeds ‘max-lisp-eval-depth’
1661 :hook (message-mode . orgalist-mode))
1663 ;; highlight TODOs in buffers
1664 (use-package hl-todo
1667 (global-hl-todo-mode))
1669 (use-package multi-term
1672 :bind (("C-c a s m m" . multi-term)
1673 ("C-c a s m d" . multi-term-dedicated-toggle)
1674 ("C-c a s m p" . multi-term-prev)
1675 ("C-c a s m n" . multi-term-next)
1677 ("C-c C-j" . term-char-mode))
1679 (setq multi-term-program "screen"
1680 multi-term-program-switches (concat "-c"
1681 (getenv "XDG_CONFIG_HOME")
1683 ;; TODO: add separate bindings for connecting to existing
1684 ;; session vs. always creating a new one
1685 multi-term-dedicated-select-after-open-p t
1686 multi-term-dedicated-window-height 20
1687 multi-term-dedicated-max-window-height 30
1689 '(("C-c C-c" . term-interrupt-subjob)
1690 ("C-c C-e" . term-send-esc)
1691 ("C-c C-j" . term-line-mode)
1693 ;; ("C-y" . term-paste)
1694 ("C-y" . term-send-raw)
1695 ("M-f" . term-send-forward-word)
1696 ("M-b" . term-send-backward-word)
1697 ("M-p" . term-send-up)
1698 ("M-n" . term-send-down)
1699 ("M-j" . term-send-raw-meta)
1700 ("M-y" . term-send-raw-meta)
1701 ("M-/" . term-send-raw-meta)
1702 ("M-0" . term-send-raw-meta)
1703 ("M-1" . term-send-raw-meta)
1704 ("M-2" . term-send-raw-meta)
1705 ("M-3" . term-send-raw-meta)
1706 ("M-4" . term-send-raw-meta)
1707 ("M-5" . term-send-raw-meta)
1708 ("M-6" . term-send-raw-meta)
1709 ("M-7" . term-send-raw-meta)
1710 ("M-8" . term-send-raw-meta)
1711 ("M-9" . term-send-raw-meta)
1712 ("<C-backspace>" . term-send-backward-kill-word)
1713 ("<M-DEL>" . term-send-backward-kill-word)
1714 ("M-d" . term-send-delete-word)
1715 ("M-," . term-send-raw)
1716 ("M-." . comint-dynamic-complete))
1717 term-unbind-key-alist
1718 '("C-z" "C-x" "C-c" "C-h"
1722 (use-package page-break-lines
1725 (page-break-lines-max-width fill-column)
1727 (global-page-break-lines-mode))
1729 (use-package expand-region
1730 :bind ("C-=" . er/expand-region))
1732 (use-package multiple-cursors
1734 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
1735 (:prefix-map b/mc-prefix-map
1737 ("c" . mc/edit-lines)
1738 ("n" . mc/mark-next-like-this)
1739 ("p" . mc/mark-previous-like-this)
1740 ("a" . mc/mark-all-like-this))))
1742 (use-package yasnippet
1745 (defconst yas-verbosity-cur yas-verbosity)
1746 (setq yas-verbosity 2)
1747 (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
1749 (setq yas-verbosity yas-verbosity-cur)
1751 (defun b/yas--maybe-expand-key-filter (cmd)
1752 (when (and (yas--maybe-expand-key-filter cmd)
1753 (not (bound-and-true-p git-commit-mode)))
1755 (defconst b/yas-maybe-expand
1756 '(menu-item "" yas-expand :filter b/yas--maybe-expand-key-filter))
1757 (define-key yas-minor-mode-map
1758 (kbd "SPC") b/yas-maybe-expand)
1762 (use-package debbugs
1764 (("C-c D d" . debbugs-gnu)
1765 ("C-c D b" . debbugs-gnu-bugs)
1768 (interactive) ; bug-gnu-emacs
1769 (setq debbugs-gnu-current-suppress t)
1770 (debbugs-gnu debbugs-gnu-default-severities '("emacs"))))
1771 ("C-c D g" . ; bug-gnuzilla
1774 (setq debbugs-gnu-current-suppress t)
1775 (debbugs-gnu debbugs-gnu-default-severities '("gnuzilla"))))
1776 ("C-c D G b" . ; bug-guix
1779 (setq debbugs-gnu-current-suppress t)
1780 (debbugs-gnu debbugs-gnu-default-severities '("guix"))))
1781 ("C-c D G p" . ; guix-patches
1784 (setq debbugs-gnu-current-suppress t)
1785 (debbugs-gnu debbugs-gnu-default-severities '("guix-patches"))))))
1787 (use-package org-ref
1789 (b/setq-every '("~/usr/org/references.bib")
1790 reftex-default-bibliography
1791 org-ref-default-bibliography)
1793 org-ref-bibliography-notes "~/usr/org/notes.org"
1794 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1796 ;; (use-package fill-column-indicator)
1800 (("C-c w e" . (lambda ()
1802 (split-window-right)
1804 (erc-switch-to-buffer)))
1805 ("C-c w s l" . (lambda ()
1807 (split-window-right)
1809 ("C-c w s j" . (lambda ()
1811 (split-window-below)
1813 ("C-c w q" . quit-window))
1815 (split-width-threshold 150))
1817 (use-package windmove
1820 (("C-c w h" . windmove-left)
1821 ("C-c w j" . windmove-down)
1822 ("C-c w k" . windmove-up)
1823 ("C-c w l" . windmove-right)
1824 ("C-c w H" . windmove-swap-states-left)
1825 ("C-c w J" . windmove-swap-states-down)
1826 ("C-c w K" . windmove-swap-states-up)
1827 ("C-c w L" . windmove-swap-states-right)))
1831 :bind ("C-c a p" . pass)
1832 :hook (pass-mode . View-exit))
1834 (use-package pdf-tools
1836 :bind (:map pdf-view-mode-map
1837 ("<C-XF86Back>" . pdf-history-backward)
1838 ("<mouse-8>" . pdf-history-backward)
1839 ("<drag-mouse-8>" . pdf-history-backward)
1840 ("<C-XF86Forward>" . pdf-history-forward)
1841 ("<mouse-9>" . pdf-history-forward)
1842 ("<drag-mouse-9>" . pdf-history-forward)
1843 ("M-RET" . image-previous-line)
1844 ("C-s" . isearch-forward)
1845 ("s s" . isearch-forward))
1846 :config (pdf-tools-install nil t)
1847 :custom (pdf-view-resize-factor 1.05))
1849 (use-package org-pdftools
1851 :straight (:host github :repo "fuxialexander/org-pdftools")
1855 (with-eval-after-load 'org
1856 (require 'org-pdftools)))
1858 (use-package biblio)
1861 :hook (latex-mode . reftex-mode))
1863 (use-package reftex-cite
1865 :disabled ; enable to disable
1866 ; reftex-cite's default choice
1869 (defun reftex-get-bibkey-default ()
1870 "If the cursor is in a citation macro, return the word before the macro."
1871 (let* ((macro (reftex-what-macro 1)))
1873 (when (and macro (string-match "cite" (car macro)))
1874 (goto-char (cdr macro)))
1875 (reftex-this-word)))))
1877 (use-package minions
1879 :config (minions-mode))
1883 (dmenu-prompt-string "run: ")
1884 (dmenu-save-file (b/var "dmenu-items")))
1887 ;; TODO: fix build by properly building the eosd-pixbuf.c module
1888 ;; e.g. see https://github.com/raxod502/straight.el/issues/386
1890 :straight (:host github :repo "clarete/eosd")
1896 (use-package scpaste
1899 (setq scpaste-http-destination "https://p.bndl.org"
1900 scpaste-scp-destination "nix:/var/www/p.bndl.org"))
1903 :bind ("C-c a e w" . eww)
1905 (eww-download-directory (file-name-as-directory
1906 (getenv "XDG_DOWNLOAD_DIR"))))
1909 ;;; Email (with Gnus)
1911 (defvar b/maildir (expand-file-name "~/mail/"))
1912 (with-eval-after-load 'recentf
1913 (add-to-list 'recentf-exclude b/maildir))
1916 b/gnus-init-file (b/etc "gnus")
1917 mail-user-agent 'gnus-user-agent
1918 read-mail-command 'gnus)
1921 :bind (("s-m" . gnus-plugged)
1922 ("s-M" . gnus-unplugged)
1923 ("C-c a m" . gnus-plugged)
1924 ("C-c a M" . gnus-unplugged))
1927 gnus-select-method '(nnnil "")
1928 gnus-secondary-select-methods
1929 '((nnimap "shemshak"
1930 (nnimap-stream plain)
1931 (nnimap-address "127.0.0.1")
1932 (nnimap-server-port 143)
1933 (nnimap-authenticator plain)
1934 (nnimap-user "amin@shemshak.local"))
1936 (nnimap-stream plain)
1937 (nnimap-address "127.0.0.1")
1938 (nnimap-server-port 143)
1939 (nnimap-authenticator plain)
1940 (nnimap-user "bandali@gnu.local")
1941 (nnimap-inbox "INBOX")
1942 (nnimap-split-methods 'nnimap-split-fancy)
1943 (nnimap-split-fancy (|
1944 ;; (: gnus-registry-split-fancy-with-parent)
1945 ;; (: gnus-group-split-fancy "INBOX" t "INBOX")
1947 (list ".*<\\(.*\\)\\.\\(non\\)?gnu\\.org>.*" "l.\\1")
1949 (list ".*<\\(.*\\)\\.gnus\\.org>.*" "l.\\1")
1951 (list ".*<\\(.*\\)\\.libreplanet\\.org>.*" "l.\\1")
1952 ;; *.lists.sr.ht, omitting one dot if present
1953 ;; add more \\.?\\([^.]*\\) if needed
1954 (list ".*<~\\(.*\\)/\\([^.]*\\)\\.?\\([^.]*\\)\\.lists.sr.ht>.*" "l.~\\1.\\2\\3")
1956 (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters")
1958 (list ".*atreus.freelists.org" "l.atreus")
1959 (list ".*deepspec.lists.cs.princeton.edu" "l.deepspec")
1960 ;; (list ".*haskell-art.we.lurk.org" "l.haskell.art") ;d
1961 (list ".*haskell-cafe.haskell.org" "l.haskell-cafe")
1962 ;; (list ".*notmuch.notmuchmail.org" "l.notmuch") ;u
1963 ;; (list ".*dev.lists.parabola.nu" "l.parabola-dev") ;u
1964 ;; ----------------------------------
1965 ;; legend: (u)nsubscribed | (d)ead
1966 ;; ----------------------------------
1967 ;; otherwise, leave mail in INBOX
1970 (nnimap-stream plain)
1971 (nnimap-address "127.0.0.1")
1972 (nnimap-server-port 143)
1973 (nnimap-authenticator plain)
1974 (nnimap-user "abandali@uw.local")
1975 (nnimap-inbox "INBOX")
1976 (nnimap-split-methods 'nnimap-split-fancy)
1977 (nnimap-split-fancy (|
1978 ;; (: gnus-registry-split-fancy-with-parent)
1980 ("subject" "SE\\s-?212" "course.se212-f19")
1981 (from "SE\\s-?212" "course.se212-f19")
1985 (nnimap-stream plain)
1986 (nnimap-address "127.0.0.1")
1987 (nnimap-server-port 143)
1988 (nnimap-authenticator plain)
1989 (nnimap-user "abandali@csc.uw.local")))
1990 gnus-message-archive-group "nnimap+gnu:INBOX"
1993 (to-address . "atreus@freelists.org")
1994 (to-list . "atreus@freelists.org"))
1996 (to-address . "deepspec@lists.cs.princeton.edu")
1997 (to-list . "deepspec@lists.cs.princeton.edu")
1998 (list-identifier . "\\[deepspec\\]"))
2000 (to-address . "emacs-devel@gnu.org")
2001 (to-list . "emacs-devel@gnu.org"))
2002 ("l\\.help-gnu-emacs"
2003 (to-address . "help-gnu-emacs@gnu.org")
2004 (to-list . "help-gnu-emacs@gnu.org"))
2005 ("l\\.info-gnu-emacs"
2006 (to-address . "info-gnu-emacs@gnu.org")
2007 (to-list . "info-gnu-emacs@gnu.org"))
2008 ("l\\.emacs-orgmode"
2009 (to-address . "emacs-orgmode@gnu.org")
2010 (to-list . "emacs-orgmode@gnu.org")
2011 (list-identifier . "\\[O\\]"))
2012 ("l\\.emacs-tangents"
2013 (to-address . "emacs-tangents@gnu.org")
2014 (to-list . "emacs-tangents@gnu.org"))
2015 ("l\\.emacsconf-committee"
2016 (to-address . "emacsconf-committee@gnu.org")
2017 (to-list . "emacsconf-committee@gnu.org"))
2018 ("l\\.emacsconf-discuss"
2019 (to-address . "emacsconf-discuss@gnu.org")
2020 (to-list . "emacsconf-discuss@gnu.org"))
2021 ("l\\.emacsconf-register"
2022 (to-address . "emacsconf-register@gnu.org")
2023 (to-list . "emacsconf-register@gnu.org"))
2024 ("l\\.emacsconf-submit"
2025 (to-address . "emacsconf-submit@gnu.org")
2026 (to-list . "emacsconf-submit@gnu.org"))
2027 ("l\\.fencepost-users"
2028 (to-address . "fencepost-users@gnu.org")
2029 (to-list . "fencepost-users@gnu.org")
2030 (list-identifier . "\\[Fencepost-users\\]"))
2031 ("l\\.gnewsense-art"
2032 (to-address . "gnewsense-art@nongnu.org")
2033 (to-list . "gnewsense-art@nongnu.org")
2034 (list-identifier . "\\[gNewSense-art\\]"))
2035 ("l\\.gnewsense-dev"
2036 (to-address . "gnewsense-dev@nongnu.org")
2037 (to-list . "gnewsense-dev@nongnu.org")
2038 (list-identifier . "\\[Gnewsense-dev\\]"))
2039 ("l\\.gnewsense-users"
2040 (to-address . "gnewsense-users@nongnu.org")
2041 (to-list . "gnewsense-users@nongnu.org")
2042 (list-identifier . "\\[gNewSense-users\\]"))
2043 ("l\\.gnunet-developers"
2044 (to-address . "gnunet-developers@gnu.org")
2045 (to-list . "gnunet-developers@gnu.org")
2046 (list-identifier . "\\[GNUnet-developers\\]"))
2048 (to-address . "help-gnunet@gnu.org")
2049 (to-list . "help-gnunet@gnu.org")
2050 (list-identifier . "\\[Help-gnunet\\]"))
2052 (to-address . "bug-gnuzilla@gnu.org")
2053 (to-list . "bug-gnuzilla@gnu.org")
2054 (list-identifier . "\\[Bug-gnuzilla\\]"))
2056 (to-address . "gnuzilla-dev@gnu.org")
2057 (to-list . "gnuzilla-dev@gnu.org")
2058 (list-identifier . "\\[Gnuzilla-dev\\]"))
2060 (to-address . "guile-devel@gnu.org")
2061 (to-list . "guile-devel@gnu.org"))
2063 (to-address . "guile-user@gnu.org")
2064 (to-list . "guile-user@gnu.org"))
2066 (to-address . "guix-devel@gnu.org")
2067 (to-list . "guix-devel@gnu.org"))
2069 (to-address . "help-guix@gnu.org")
2070 (to-list . "help-guix@gnu.org"))
2072 (to-address . "info-guix@gnu.org")
2073 (to-list . "info-guix@gnu.org"))
2074 ("l\\.savannah-hackers-public"
2075 (to-address . "savannah-hackers-public@gnu.org")
2076 (to-list . "savannah-hackers-public@gnu.org"))
2077 ("l\\.savannah-users"
2078 (to-address . "savannah-users@gnu.org")
2079 (to-list . "savannah-users@gnu.org"))
2081 (to-address . "www-commits@gnu.org")
2082 (to-list . "www-commits@gnu.org"))
2084 (to-address . "www-discuss@gnu.org")
2085 (to-list . "www-discuss@gnu.org"))
2087 (to-address . "haskell-art@we.lurk.org")
2088 (to-list . "haskell-art@we.lurk.org")
2089 (list-identifier . "\\[haskell-art\\]"))
2091 (to-address . "haskell-cafe@haskell.org")
2092 (to-list . "haskell-cafe@haskell.org")
2093 (list-identifier . "\\[Haskell-cafe\\]"))
2095 (to-address . "notmuch@notmuchmail.org")
2096 (to-list . "notmuch@notmuchmail.org"))
2098 (to-address . "dev@lists.parabola.nu")
2099 (to-list . "dev@lists.parabola.nu")
2100 (list-identifier . "\\[Dev\\]"))
2101 ("l\\.~bandali\\.public-inbox"
2102 (to-address . "~bandali/public-inbox@lists.sr.ht")
2103 (to-list . "~bandali/public-inbox@lists.sr.ht"))
2104 ("l\\.~sircmpwn\\.free-writers-club"
2105 (to-address . "~sircmpwn/free-writers-club@lists.sr.ht")
2106 (to-list . "~sircmpwn/free-writers-club@lists.sr.ht"))
2107 ("l\\.~sircmpwn\\.srht-admins"
2108 (to-address . "~sircmpwn/sr.ht-admins@lists.sr.ht")
2109 (to-list . "~sircmpwn/sr.ht-admins@lists.sr.ht"))
2110 ("l\\.~sircmpwn\\.srht-announce"
2111 (to-address . "~sircmpwn/sr.ht-announce@lists.sr.ht")
2112 (to-list . "~sircmpwn/sr.ht-announce@lists.sr.ht"))
2113 ("l\\.~sircmpwn\\.srht-dev"
2114 (to-address . "~sircmpwn/sr.ht-dev@lists.sr.ht")
2115 (to-list . "~sircmpwn/sr.ht-dev@lists.sr.ht"))
2116 ("l\\.~sircmpwn\\.srht-discuss"
2117 (to-address . "~sircmpwn/sr.ht-discuss@lists.sr.ht")
2118 (to-list . "~sircmpwn/sr.ht-discuss@lists.sr.ht"))
2120 (to-address . "webmasters@gnu.org")
2121 (to-list . "webmasters@gnu.org"))
2128 gnus-large-newsgroup 50
2129 gnus-home-directory (b/var "gnus/")
2130 gnus-directory (concat gnus-home-directory "news/")
2131 message-directory (concat gnus-home-directory "mail/")
2132 nndraft-directory (concat gnus-home-directory "drafts/")
2133 gnus-save-newsrc-file nil
2134 gnus-read-newsrc-file nil
2135 gnus-interactive-exit nil
2136 gnus-gcc-mark-as-read t)
2138 (when (version< emacs-version "27")
2139 (with-eval-after-load 'nnmail
2141 'nnmail-split-abbrev-alist
2142 '(list . "list-id\\|list-post\\|x-mailing-list\\|x-beenthere\\|x-loop")
2145 ;; (gnus-registry-initialize)
2147 (with-eval-after-load 'recentf
2148 (add-to-list 'recentf-exclude gnus-home-directory)))
2150 (use-package gnus-art
2153 gnus-buttonized-mime-types '("multipart/\\(signed\\|encrypted\\)")
2154 gnus-sorted-header-list '("^From:"
2170 "^Mail-Followup-To:"
2174 "^X-detected-operating-system:"
2179 gnus-visible-headers (mapconcat 'identity
2180 gnus-sorted-header-list
2182 ;; local-lapsed article dates
2183 ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11
2184 gnus-article-date-headers '(user-defined)
2185 gnus-article-time-format
2187 (let* ((date (format-time-string "%a, %d %b %Y %T %z" time))
2188 (local (article-make-date-line date 'local))
2189 (combined-lapsed (article-make-date-line date
2192 (string-match " (.+" combined-lapsed)
2193 (match-string 0 combined-lapsed))))
2194 (concat local lapsed))))
2196 :map gnus-article-mode-map
2197 ("M-L" . org-store-link)))
2199 (use-package gnus-sum
2200 :bind (:map gnus-summary-mode-map
2201 :prefix-map b/gnus-summary-prefix-map
2203 ("r" . gnus-summary-reply)
2204 ("w" . gnus-summary-wide-reply)
2205 ("v" . gnus-summary-show-raw-article))
2208 :map gnus-summary-mode-map
2209 ("M-L" . org-store-link))
2210 :hook (gnus-summary-mode . b/no-mouse-autoselect-window)
2212 (gnus-thread-sort-functions '(gnus-thread-sort-by-number
2213 gnus-thread-sort-by-subject
2214 gnus-thread-sort-by-date)))
2216 (use-package gnus-msg
2218 (defvar b/shemshak-signature "Amin Bandali
2219 https://shemshak.org/~amin")
2220 (defvar b/uw-signature "Amin Bandali, MMath Student
2221 Cheriton School of Computer Science
2222 University of Waterloo
2223 https://bandali.eu.org")
2224 (defvar b/csc-signature "Amin Bandali
2225 System Administrator, Systems Committee
2226 Computer Science Club, University of Waterloo
2227 https://csclub.uwaterloo.ca/~abandali")
2228 (setq gnus-message-replysign t
2231 (address "bandali@gnu.org"))
2232 ("nnimap\\+gnu:l\\..*"
2235 (organization "GNU"))
2236 ((header "subject" "ThankCRM")
2237 (to "webmasters-comment@gnu.org")
2239 (eval (setq b/message-cite-say-hi nil)))
2240 ("nnimap\\+shemshak:.*"
2241 (address "amin@shemshak.org")
2243 (signature b/shemshak-signature)
2244 (gcc "nnimap+shemshak:Sent")
2245 (eval (setq b/message-cite-say-hi t)))
2247 (address "bandali@uwaterloo.ca")
2249 (signature b/uw-signature))
2250 ("nnimap\\+uw:INBOX"
2251 (gcc "\"nnimap+uw:Sent Items\""))
2253 (address "bandali@csclub.uwaterloo.ca")
2254 (signature b/csc-signature)
2255 (gcc "nnimap+csc:Sent"))))
2256 :hook (gnus-message-setup . (lambda ()
2257 (unless (mml-secure-is-encrypted-p)
2258 (mml-secure-message-sign)))))
2260 (use-package gnus-topic
2261 :hook (gnus-group-mode . gnus-topic-mode)
2262 :config (setq gnus-topic-line-format "%i[ %A: %(%{%n%}%) ]%v\n"))
2264 (use-package gnus-agent
2266 (setq gnus-agent-synchronize-flags 'ask)
2267 :hook (gnus-group-mode . gnus-agent-mode))
2269 (use-package gnus-group
2271 (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)"))
2274 ;; problematic with ebdb's popup, *EBDB-Gnus*
2275 (use-package gnus-win
2277 (setq gnus-use-full-window nil)))
2279 (use-package gnus-dired
2280 :commands gnus-dired-mode
2282 (add-hook 'dired-mode-hook 'gnus-dired-mode))
2285 (use-package gnus-utils
2287 (gnus-completing-read-function 'gnus-ido-completing-read)))
2289 (use-package mm-decode
2291 (setq mm-discouraged-alternatives '("text/html" "text/richtext")
2292 mm-decrypt-option 'known
2293 mm-verify-option 'known))
2297 (when (version< "27" emacs-version)
2298 (set-face-attribute 'mm-uu-extract nil :extend t))
2300 (mm-uu-diff-groups-regexp
2301 "\\(gmane\\|gnu\\|l\\)\\..*\\(diff\\|commit\\|cvs\\|bug\\|dev\\)"))
2303 (use-package sendmail
2305 (setq sendmail-program (executable-find "msmtp")
2306 ;; message-sendmail-extra-arguments '("-v" "-d")
2307 mail-specify-envelope-from t
2308 mail-envelope-from 'header))
2310 (use-package message
2311 :bind (:map message-mode-map ("<C-return>" . b/insert-asterism))
2313 ;; redefine for a simplified In-Reply-To header
2314 ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67)
2315 (defun message-make-in-reply-to ()
2316 "Return the In-Reply-To header for this message."
2317 (when message-reply-headers
2318 (let ((from (mail-header-from message-reply-headers))
2319 (msg-id (mail-header-id message-reply-headers)))
2323 (defconst b/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:")
2324 (defconst message-cite-style-bandali
2325 '((message-cite-function 'message-cite-original)
2326 (message-citation-line-function 'message-insert-formatted-citation-line)
2327 (message-cite-reply-position 'traditional)
2328 (message-yank-prefix "> ")
2329 (message-yank-cited-prefix ">")
2330 (message-yank-empty-prefix ">")
2331 (message-citation-line-format
2332 (if b/message-cite-say-hi
2333 (concat "Hi %F,\n\n" b/message-cite-style-format)
2334 b/message-cite-style-format)))
2335 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
2336 (setq ;; message-cite-style 'message-cite-style-bandali
2337 message-kill-buffer-on-exit t
2338 message-send-mail-function 'message-send-mail-with-sendmail
2339 message-sendmail-envelope-from 'header
2340 message-subscribed-address-functions
2341 '(gnus-find-subscribed-addresses)
2342 message-dont-reply-to-names
2343 "\\(\\(amin@shemshak\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|\\(a?bandali@\\(csclub\\.\\)?uwaterloo\\.ca\\)\\)")
2344 ;; (require 'company-ebdb)
2345 :hook (;; (message-setup . mml-secure-message-sign-pgpmime)
2346 (message-mode . flyspell-mode)
2347 (message-mode . (lambda ()
2348 ;; (setq-local fill-column b/fill-column
2349 ;; message-fill-column b/fill-column)
2350 (make-local-variable 'company-idle-delay)
2351 (setq company-idle-delay 0.2))))
2353 ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
2354 ;; (message-header-to ((t (:foreground "#111" :weight normal))))
2355 ;; (message-header-cc ((t (:foreground "#333" :weight normal))))
2357 (message-elide-ellipsis "[...]\n"))
2361 (use-package mml-sec
2363 (mml-secure-openpgp-encrypt-to-self t)
2364 (mml-secure-openpgp-sign-with-sender t))
2366 (use-package footnote
2369 ;; (setq footnote-start-tag ""
2370 ;; footnote-end-tag ""
2371 ;; footnote-style 'unicode)
2373 (:map message-mode-map
2374 :prefix-map b/footnote-prefix-map
2376 ("a" . footnote-add-footnote)
2377 ("b" . footnote-back-to-message)
2378 ("c" . footnote-cycle-style)
2379 ("d" . footnote-delete-footnote)
2380 ("g" . footnote-goto-footnote)
2381 ("r" . footnote-renumber-footnotes)
2382 ("s" . footnote-set-style)))
2387 :bind (:map gnus-group-mode-map ("e" . ebdb))
2389 (setq ebdb-sources (b/var "ebdb"))
2390 (with-eval-after-load 'swiper
2391 (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t)))
2393 (use-package ebdb-com
2396 (use-package ebdb-complete
2399 ;; (setq ebdb-complete-mail 'capf)
2400 (ebdb-complete-enable))
2402 (use-package ebdb-message
2406 ;; (use-package company-ebdb
2408 ;; (defun company-ebdb--post-complete (_) nil))
2410 (use-package ebdb-gnus
2413 (ebdb-gnus-window-size 0.3))
2415 (use-package ebdb-mua
2418 :custom (ebdb-mua-pop-up t))
2420 ;; (use-package ebdb-message
2423 ;; (use-package ebdb-vcard
2426 (use-package message-x)
2429 (use-package message-x
2431 (message-x-completion-alist
2433 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address)
2436 (quote message-newgroups-header-regexp))
2437 message-newgroups-header-regexp message-newsgroups-header-regexp)
2438 . message-expand-group))))))
2441 (use-package gnus-harvest
2442 :commands gnus-harvest-install
2445 (if (featurep 'message-x)
2446 (gnus-harvest-install 'message-x)
2447 (gnus-harvest-install))))
2449 (use-package gnus-article-treat-patch
2454 ;; note: be sure to customize faces with `:foreground "white"' when
2455 ;; using a theme with a white/light background :)
2456 (setq ft/gnus-article-patch-conditions
2457 '("^@@ -[0-9]+,[0-9]+ \\+[0-9]+,[0-9]+ @@")))
2460 ;;; IRC (with ERC and ZNC)
2463 :bind (("C-c b b" . erc-switch-to-buffer)
2465 ("M-a" . erc-track-switch-buffer))
2467 (erc-join-buffer 'bury)
2468 (erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
2469 (erc-nick "bandali")
2471 (erc-rename-buffers t)
2472 (erc-server-reconnect-attempts 5)
2473 (erc-server-reconnect-timeout 3)
2475 (defun erc-cmd-OPME ()
2476 "Request chanserv to op me."
2477 (erc-message "PRIVMSG"
2478 (format "chanserv op %s %s"
2479 (erc-default-target)
2480 (erc-current-nick)) nil))
2481 (defun erc-cmd-DEOPME ()
2482 "Deop myself from current channel."
2483 (erc-cmd-DEOP (format "%s" (erc-current-nick))))
2484 (add-to-list 'erc-modules 'keep-place)
2485 (add-to-list 'erc-modules 'notifications)
2486 (add-to-list 'erc-modules 'smiley)
2487 (add-to-list 'erc-modules 'spelling)
2488 (add-to-list 'erc-modules 'scrolltoplace)
2489 (erc-update-modules))
2491 (use-package erc-fill
2494 (erc-fill-column 77)
2495 (erc-fill-function 'erc-fill-static)
2496 (erc-fill-static-center 18))
2498 (use-package erc-pcomplete
2501 (erc-pcomplete-nick-postfix ", "))
2503 (use-package erc-track
2505 :bind (("C-c a e t d" . erc-track-disable)
2506 ("C-c a e t e" . erc-track-enable))
2508 (erc-track-enable-keybindings nil)
2509 (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT"
2510 "324" "329" "332" "333" "353" "477"))
2511 (erc-track-position-in-mode-line t)
2512 (erc-track-priority-faces-only 'all)
2513 (erc-track-shorten-function nil))
2515 (use-package erc-hl-nicks
2518 (use-package erc-scrolltoplace
2522 :bind (("C-c a e e" . znc-erc)
2523 ("C-c a e a" . znc-all))
2525 (let ((pwd (let ((auth (auth-source-search :host "znca")))
2527 ((null auth) (error "Couldn't find znca's authinfo"))
2528 (t (funcall (plist-get (car auth) :secret)))))))
2530 `(("znc.shemshak.org" 1337 t
2531 ((freenode "amin/freenode" ,pwd)))
2532 ("znc.shemshak.org" 1337 t
2533 ((oftc "amin/oftc" ,pwd)))))))
2536 ;;; Post initialization
2538 (message "Loading %s...done (%.3fs)" user-init-file
2539 (float-time (time-subtract (current-time)
2540 b/before-user-init-time)))
2542 ;;; init.el ends here