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 ;; Emacs configuration of Amin Bandali, computer scientist, functional
21 ;; programmer, and free software activist. Uses straight.el for
22 ;; purely functional and fully reproducible package management.
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:
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
38 ;;; Emacs initialization
40 (defvar b
/before-user-init-time
(current-time)
41 "Value of `current-time' when Emacs begins loading `user-init-file'.")
42 (defvar b
/emacs-initialized nil
43 "Whether Emacs has been initialized.")
45 (when (not (bound-and-true-p b
/emacs-initialized
))
46 (message "Loading Emacs...done (%.3fs)"
47 (float-time (time-subtract b
/before-user-init-time
50 ;; temporarily increase `gc-cons-threshhold' and `gc-cons-percentage'
51 ;; during startup to reduce garbage collection frequency. clearing
52 ;; `file-name-handler-alist' seems to help reduce startup time too.
53 (defvar b
/gc-cons-threshold gc-cons-threshold
)
54 (defvar b
/gc-cons-percentage gc-cons-percentage
)
55 (defvar b
/file-name-handler-alist file-name-handler-alist
)
56 (setq gc-cons-threshold
(* 400 1024 1024) ; 400 MiB
57 gc-cons-percentage
0.6
58 file-name-handler-alist nil
59 ;; sidesteps a bug when profiling with esup
60 esup-child-profile-require-level
0)
62 ;; set them back to their defaults once we're done initializing
64 "My post-initialize function, run after loading `user-init-file'."
65 (setq b
/emacs-initialized t
66 gc-cons-threshold b
/gc-cons-threshold
67 gc-cons-percentage b
/gc-cons-percentage
68 file-name-handler-alist b
/file-name-handler-alist
))
69 (add-hook 'after-init-hook
#'b
/post-init
)
71 ;; increase number of lines kept in *Messages* log
72 (setq message-log-max
20000)
74 ;; optionally, uncomment to supress some byte-compiler warnings
75 ;; (see C-h v byte-compile-warnings RET for more info)
76 ;; (setq byte-compile-warnings
77 ;; '(not free-vars unresolved noruntime lexical make-local))
82 (setq user-full-name
"Amin Bandali"
83 user-mail-address
"bandali@gnu.org")
88 ;; useful for commenting out multiple sexps at a time
89 (defmacro comment
(&rest _
)
90 "Comment out one or more s-expressions."
91 (declare (indent defun
))
95 ;;; Package management
97 ;; No package.el (for emacs 26 and before, uncomment the following)
98 ;; Not necessary when using straight.el
99 ;; (C-h v straight-package-neutering-mode RET)
102 (not (featurep 'straight
))
103 (version< emacs-version
"27"))
104 (setq package-enable-at-startup nil
)
105 ;; (package-initialize)
108 ;; for emacs 27 and later, we use early-init.el. see
109 ;; https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=24acb31c04b4048b85311d794e600ecd7ce60d3b
113 ;; Main engine start...
115 (setq straight-repository-branch
"develop"
116 straight-check-for-modifications
'(check-on-save find-when-checking
))
118 (defun b/bootstrap-straight
()
119 (defvar bootstrap-version
)
120 (let ((bootstrap-file
121 (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory
))
122 (bootstrap-version 5))
123 (unless (file-exists-p bootstrap-file
)
125 (url-retrieve-synchronously
126 "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
127 'silent
'inhibit-cookies
)
128 (goto-char (point-max))
129 (eval-print-last-sexp)))
130 (load bootstrap-file nil
'nomessage
)))
132 ;; Solid rocket booster ignition...
134 (b/bootstrap-straight
)
138 (setq straight-use-package-by-default t
)
140 (defmacro use-feature
(name &rest args
)
141 "Like `use-package', but with `straight-use-package-by-default' disabled."
147 (with-eval-after-load 'use-package-core
148 (let ((upflk (car use-package-font-lock-keywords
)))
149 (font-lock-add-keywords
151 `((,(replace-regexp-in-string
152 "use-package" "use-feature"
156 (with-eval-after-load 'recentf
157 (add-to-list 'recentf-exclude
158 (expand-file-name "~/.emacs.d/straight/build/")))
160 (defun b/reload-init
()
161 "Reload `user-init-file'."
163 (setq b
/before-user-init-time
(current-time)
164 b
/file-name-handler-alist file-name-handler-alist
)
165 (load user-init-file nil
'nomessage
)
169 (straight-use-package 'use-package
)
171 (if nil
; set to t when need to debug init
173 (setq use-package-verbose t
174 use-package-expand-minimally nil
175 use-package-compute-statistics t
177 (require 'use-package
))
178 (setq use-package-verbose nil
179 use-package-expand-minimally t
))
181 (setq use-package-always-defer t
)
187 (defvar b
/exwm-p
(string= (system-name) "jirud")
188 "Whether or not we will be using `exwm'.")
190 ;; keep ~/.emacs.d clean
191 (use-package no-littering
194 (defalias 'b
/etc
'no-littering-expand-etc-file-name
)
195 (defalias 'b
/var
'no-littering-expand-var-file-name
))
197 ;; separate custom file (don't want it mixing with init.el)
201 (setq custom-file
(b/etc
"custom.el"))
202 (when (file-exists-p custom-file
)
204 ;; while at it, treat themes as safe
205 (setf custom-safe-themes t
)
206 ;; only one custom theme at a time
208 (defadvice load-theme
(before clear-previous-themes activate
)
209 "Clear existing theme settings instead of layering them"
210 (mapc #'disable-theme custom-enabled-themes
))))
212 ;; load the secrets file if it exists, otherwise show a warning
215 (load (b/etc
"secrets"))))
217 ;; better $PATH (and other environment variable) handling
218 (use-package exec-path-from-shell
221 (setq exec-path-from-shell-arguments nil
222 exec-path-from-shell-check-startup-files nil
)
224 (exec-path-from-shell-initialize)
225 ;; while we're at it, let's fix access to our running ssh-agent
226 (exec-path-from-shell-copy-env "SSH_AGENT_PID")
227 (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
229 ;; start up emacs server. see
230 ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server
233 :config
(or (server-running-p) (server-mode)))
242 (defmacro b
/setq-every
(value &rest vars
)
243 "Set all the variables from VARS to value VALUE."
244 (declare (indent defun
) (debug t
))
245 `(progn ,@(mapcar (lambda (x) (list 'setq x value
)) vars
)))
247 (defun b/start-process
(program &rest args
)
248 "Same as `start-process', but doesn't bother about name and buffer."
249 (let ((process-name (concat program
"_process"))
250 (buffer-name (generate-new-buffer-name
251 (concat program
"_output"))))
252 (apply #'start-process
253 process-name buffer-name program args
)))
255 (defun b/dired-start-process
(program &optional args
)
256 "Open current file with a PROGRAM."
257 ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can
258 ;; be nil, so remove it).
259 (apply #'b
/start-process
261 (remove nil
(list args
(dired-get-file-for-visit)))))
263 (defun b/add-elisp-section
()
267 (insert "\n\f\n;;; "))
269 (defun b/insert-asterism
()
271 (insert "\n\n * * *\n\n"))
273 (defun b/no-mouse-autoselect-window
()
274 "Conveniently disable `focus-follows-mouse'.
275 For disabling the behaviour for certain buffers and/or modes."
276 (make-local-variable 'mouse-autoselect-window
)
277 (setq mouse-autoselect-window nil
))
282 ;;;; C-level customizations
286 enable-recursive-minibuffers t
287 resize-mini-windows t
288 ;; more useful frame titles
289 frame-title-format
'("" invocation-name
" - "
291 (if (buffer-file-name)
292 (abbreviate-file-name (buffer-file-name))
294 ;; i don't feel like jumping out of my chair every now and again; so
295 ;; don't BEEP! at me, emacs
296 ring-bell-function
'ignore
299 ;; scroll-conservatively 10000
301 scroll-conservatively
10
302 scroll-preserve-screen-position
1
303 ;; focus follows mouse
304 mouse-autoselect-window t
)
307 ;; always use space for indentation
315 (dolist (ft (fontset-list))
319 (font-spec :name
"Source Code Pro" :size
14))
323 (font-spec :name
"DejaVu Sans Mono")
330 ;; :name "Symbola monospacified for DejaVu Sans Mono")
336 ;; (font-spec :name "DejaVu Sans Mono")
342 (font-spec :name
"DejaVu Sans Mono" :size
14)
346 ;;;; Elisp-level customizations
352 ;; don't need to see the startup echo area message
353 (advice-add #'display-startup-echo-area-message
:override
#'ignore
)
355 ;; i want *scratch* as my startup buffer
356 (initial-buffer-choice t
)
357 ;; i don't need the default hint
358 (initial-scratch-message nil
)
359 ;; use customizable text-mode as major mode for *scratch*
360 ;; (initial-major-mode 'text-mode)
361 ;; inhibit buffer list when more than 2 files are loaded
362 (inhibit-startup-buffer-menu t
)
363 ;; don't need to see the startup screen or echo area message
364 (inhibit-startup-screen t
)
365 (inhibit-startup-echo-area-message user-login-name
))
371 ;; backups (C-h v make-backup-files RET)
372 (backup-by-copying t
)
374 (delete-old-versions t
)
377 (auto-save-file-name-transforms
378 `((".*" ,(b/var
"auto-save/") t
)))
380 ;; insert newline at the end of files
381 (require-final-newline t
)
383 ;; open read-only file buffers in view-mode
384 ;; (enables niceties like `q' for quit)
387 ;; disable disabled commands
388 (setq disabled-command-function nil
)
390 ;; lazy-person-friendly yes/no prompts
391 (defalias 'yes-or-no-p
#'y-or-n-p
)
393 ;; enable automatic reloading of changed buffers and files
394 (use-feature autorevert
397 (global-auto-revert-mode 1)
399 (auto-revert-verbose nil
)
400 (global-auto-revert-non-file-buffers nil
))
402 ;; time and battery in mode-line
409 (display-time-default-load-average nil
)
410 (display-time-format "%a %b %-e, %-l:%M%P"))
416 (display-battery-mode)
418 (battery-mode-line-format " %p%% %t"))
424 ;; (fringe-mode '(3 . 1))
430 ;; enable winner-mode (C-h f winner-mode RET)
435 ;; don't display *compilation* buffer on success. based on
436 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
437 ;; instead of the now obsolete `flet'.
438 (defun b/compilation-finish-function
(buffer outstr
)
439 (unless (string-match "finished" outstr
)
440 (switch-to-buffer-other-window buffer
))
443 (setq compilation-finish-functions
#'b
/compilation-finish-function
)
447 (defadvice compilation-start
448 (around inhibit-display
449 (command &optional mode name-function highlight-regexp
))
450 (if (not (string-match "^\\(find\\|grep\\)" command
))
451 (cl-letf (((symbol-function 'display-buffer
) #'ignore
))
452 (save-window-excursion ad-do-it
))
454 (ad-activate 'compilation-start
))
458 ;; allow scrolling in Isearch
459 (isearch-allow-scroll t
)
460 ;; search for non-ASCII characters: i’d like non-ASCII characters such
461 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
462 ;; counterpart. shoutout to
463 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
464 (search-default-mode #'char-fold-to-regexp
))
466 ;; uncomment to extend the above behaviour to query-replace
470 (replace-char-fold t
)))
473 :bind
("C-x v C-=" . vc-ediff
))
478 (vc-git-print-log-follow t
))
481 :config
(add-hook 'ediff-after-quit-hook-internal
'winner-undo
)
482 :custom
((ediff-window-setup-function 'ediff-setup-windows-plain
)
483 (ediff-split-window-function 'split-window-horizontally
)))
485 (use-feature face-remap
487 ;; gentler font resizing
488 (text-scale-mode-step 1.05))
493 (setq mouse-wheel-scroll-amount
'(1 ((shift) .
1)) ; one line at a time
494 mouse-wheel-progressive-speed nil
; don't accelerate scrolling
495 mouse-wheel-follow-mouse t
)) ; scroll window under mouse
497 (use-feature pixel-scroll
499 :config
(pixel-scroll-mode 1))
501 (use-feature epg-config
503 ((epg-gpg-program (executable-find "gpg"))))
505 (use-feature auth-source
507 (auth-sources '("~/.authinfo.gpg"))
508 (authinfo-hidden (regexp-opt '("password" "client-secret" "token"))))
516 ("C-c e b" . eval-buffer
)
517 ("C-c e e" . eval-last-sexp
)
518 ("C-c e r" . eval-region
)
520 ("C-c e i" . emacs-init-time
)
521 ("C-c e u" . emacs-uptime
)
522 ("C-c e v" . emacs-version
)
524 ("C-c F m" . make-frame-command
)
525 ("C-c F d" . delete-frame
)
526 ("C-c F D" . server-edit
)
528 ("C-S-h C" . describe-char
)
529 ("C-S-h F" . describe-face
)
531 ("C-x k" . kill-this-buffer
)
532 ("C-x K" . kill-buffer
)
533 ("C-x s" . save-buffer
)
534 ("C-x S" . save-some-buffers
)
536 :map emacs-lisp-mode-map
537 ("<C-return>" . b
/add-elisp-section
))
539 (when (display-graphic-p)
540 (unbind-key "C-z" global-map
))
543 ;; for back and forward mouse keys
544 ("<XF86Back>" . previous-buffer
)
545 ("<mouse-8>" . previous-buffer
)
546 ("<drag-mouse-8>" . previous-buffer
)
547 ("<XF86Forward>" . next-buffer
)
548 ("<mouse-9>" . next-buffer
)
549 ("<drag-mouse-9>" . next-buffer
)
550 ("<drag-mouse-2>" . kill-this-buffer
)
551 ("<drag-mouse-3>" . switch-to-buffer
))
554 :prefix-map b
/straight-prefix-map
556 ("u" . straight-use-package
)
557 ("f" . straight-freeze-versions
)
558 ("t" . straight-thaw-versions
)
559 ("P" . straight-prune-build
)
560 ("g" . straight-get-recipe
)
561 ("r" . b
/reload-init
)
562 ;; M-x ^straight-.*-all$
563 ("a c" . straight-check-all
)
564 ("a f" . straight-fetch-all
)
565 ("a m" . straight-merge-all
)
566 ("a n" . straight-normalize-all
)
567 ("a F" . straight-pull-all
)
568 ("a P" . straight-push-all
)
569 ("a r" . straight-rebuild-all
)
570 ;; M-x ^straight-.*-package$
571 ("p c" . straight-check-package
)
572 ("p f" . straight-fetch-package
)
573 ("p m" . straight-merge-package
)
574 ("p n" . straight-normalize-package
)
575 ("p F" . straight-pull-package
)
576 ("p P" . straight-push-package
)
577 ("p r" . straight-rebuild-package
))
580 ;;; Essential packages
586 ;; make class name the buffer name, truncating beyond 60 characters
587 (defun b/exwm-rename-buffer
()
589 (exwm-workspace-rename-buffer
590 (concat exwm-class-name
":"
591 (if (<= (length exwm-title
) 60) exwm-title
592 (concat (substring exwm-title
0 59) "...")))))
595 :hook
((exwm-update-class . b
/exwm-rename-buffer
)
596 (exwm-update-title . b
/exwm-rename-buffer
)))
598 (use-feature exwm-config
601 :hook
(exwm-init . exwm-config--fix
/ido-buffer-window-other-frame
))
603 (use-feature exwm-input
607 (defun b/exwm-ws-prev-index
()
608 "Return the index for the previous EXWM workspace, wrapping
610 (if (= exwm-workspace-current-index
0)
611 (1- exwm-workspace-number
)
612 (1- exwm-workspace-current-index
)))
614 (defun b/exwm-ws-next-index
()
615 "Return the index for the next EXWM workspace, wrapping
617 (if (= exwm-workspace-current-index
618 (1- exwm-workspace-number
))
620 (1+ exwm-workspace-current-index
)))
622 ;; shorten 'C-c C-q' to 'C-q'
623 (define-key exwm-mode-map
[?\C-q
] #'exwm-input-send-next-key
)
625 (setq exwm-workspace-number
4
626 exwm-input-global-keys
627 `(([?\s-R
] . exwm-reset
)
628 ([?\s-
\\] . exwm-workspace-switch
)
630 ([?\S-\s-\s
] .
(lambda (command)
632 (list (read-shell-command "➜ ")))
633 (start-process-shell-command
634 command nil command
)))
635 ([s-return
] .
(lambda ()
637 (start-process "" nil
"urxvt")))
638 ([?\C-\s-\s
] . counsel-linux-app
)
639 ([?\M-\s-\s
] .
(lambda ()
641 (start-process-shell-command
642 "rofi-pass" nil
"rofi-pass")))
643 ([?\s-h
] . windmove-left
)
644 ([?\s-j
] . windmove-down
)
645 ([?\s-k
] . windmove-up
)
646 ([?\s-l
] . windmove-right
)
647 ([?\s-H
] . windmove-swap-states-left
)
648 ([?\s-J
] . windmove-swap-states-down
)
649 ([?\s-K
] . windmove-swap-states-up
)
650 ([?\s-L
] . windmove-swap-states-right
)
651 ([?\M-\s-h
] . shrink-window-horizontally
)
652 ([?\M-\s-l
] . enlarge-window-horizontally
)
653 ([?\M-\s-k
] . shrink-window
)
654 ([?\M-\s-j
] . enlarge-window
)
655 ([?\s-\
[] .
(lambda ()
657 (exwm-workspace-switch-create
658 (b/exwm-ws-prev-index
))))
659 ([?\s-\
]] .
(lambda ()
661 (exwm-workspace-switch-create
662 (b/exwm-ws-next-index
))))
663 ([?\s-
{] .
(lambda ()
665 (exwm-workspace-move-window
666 (b/exwm-ws-prev-index
))))
667 ([?\s-
}] .
(lambda ()
669 (exwm-workspace-move-window
670 (b/exwm-ws-next-index
))))
671 ,@(mapcar (lambda (i)
672 `(,(kbd (format "s-%d" i
)) .
675 (exwm-workspace-switch-create ,i
))))
676 (number-sequence 0 (1- exwm-workspace-number
)))
677 ([?\s-t
] . exwm-floating-toggle-floating
)
678 ([?\s-f
] . exwm-layout-toggle-fullscreen
)
679 ([?\s-W
] .
(lambda ()
681 (kill-buffer (current-buffer))))
682 ([?\s-Q
] .
(lambda ()
684 (exwm-manage--kill-client)))
685 ([?\s-
\'] .
(lambda ()
687 (start-process-shell-command
688 "rofi-light" nil
"rofi-light")))
692 (start-process "" nil "pamixer" "--toggle-mute")))
693 ([XF86AudioLowerVolume] .
697 "" nil "pamixer" "--allow-boost" "--decrease" "5")))
698 ([XF86AudioRaiseVolume] .
702 "" nil "pamixer" "--allow-boost" "--increase" "5")))
706 (start-process "" nil "mpc" "toggle")))
710 (start-process "" nil "mpc" "prev")))
714 (start-process "" nil "mpc" "next")))
718 (start-process "" nil "dm-tool" "lock")))
719 ([\s-XF86Back] . previous-buffer)
720 ([\s-XF86Forward] . next-buffer)))
722 ;; Line-editing shortcuts
723 (setq exwm-input-simulation-keys
728 ([?\M-f] . [C-right])
736 ([?\C-k] . [S-end ?\C-x])
743 ([?\M-d] . [C-S-right ?\C-x])
744 ([?\M-\d] . [C-S-left ?\C-x])
751 ([?\C-g] . [escape]))))
753 (use-feature exwm-manage
757 (exwm-manage-finish . (lambda ()
758 (when exwm-class-name
760 ((string= exwm-class-name "Abrowser")
761 (exwm-input-set-local-simulation-keys
762 `(,@exwm-input-simulation-keys
763 ([?\C-\S-d] . [?\C-d]))))
764 ((string= exwm-class-name "URxvt")
765 (exwm-input-set-local-simulation-keys
766 '(([?\C-c ?\C-c] . [?\C-c])
767 ([?\C-c ?\C-u] . [?\C-u]))))
768 ((string= exwm-class-name "Zathura")
769 (exwm-input-set-local-simulation-keys
771 ([?\C-n] . [C-down])))))))))
773 (use-feature exwm-randr
779 (exwm-randr-workspace-monitor-plist '(1 "VGA-1")))
781 (use-feature exwm-systemtray
785 (exwm-systemtray-enable))
787 (use-feature exwm-workspace)
789 (use-package exwm-edit
793 ;; use the org-plus-contrib package to get the whole deal
794 (use-package org-plus-contrib)
799 (setq org-src-tab-acts-natively t
800 org-src-preserve-indentation nil
801 org-edit-src-content-indentation 0
802 org-link-email-description-format "Email %c: %s" ; %.30s
803 org-highlight-latex-and-related '(entities)
804 org-use-speed-commands t
805 org-startup-folded 'content
806 org-catch-invisible-edits 'show-and-error
808 (when (version< org-version "9.3")
809 (setq org-email-link-description-format
810 org-link-email-description-format))
811 (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t)
812 (add-to-list 'org-modules 'org-habit)
814 (("C-c a o a" . org-agenda)
816 ("M-L" . org-insert-last-stored-link)
817 ("M-O" . org-toggle-link-display))
818 :hook ((org-mode . org-indent-mode)
819 (org-mode . auto-fill-mode)
820 (org-mode . flyspell-mode))
822 (org-pretty-entities t)
823 (org-agenda-files '("~/usr/org/todos/personal.org"
824 "~/usr/org/todos/habits.org"
825 "~/src/git/masters-thesis/todo.org"))
826 (org-agenda-start-on-weekday 0)
827 (org-agenda-time-leading-zero t)
828 (org-habit-graph-column 44)
829 (org-latex-packages-alist '(("" "listings") ("" "color")))
831 '(org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21"))))
832 '(org-block ((t (:background "#1d1f21"))))
833 '(org-latex-and-related ((t (:foreground "#b294bb")))))
835 (use-feature ox-latex
838 (setq org-latex-listings 'listings
839 ;; org-latex-prefer-user-labels t
841 (add-to-list 'org-latex-classes
842 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
843 ("\\section{%s}" . "\\section*{%s}")
844 ("\\subsection{%s}" . "\\subsection*{%s}")
845 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
846 ("\\paragraph{%s}" . "\\paragraph*{%s}")
847 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
849 (require 'ox-beamer))
851 (use-feature ox-extra
853 (ox-extras-activate '(latex-header-blocks ignore-headlines)))
855 ;; asynchronous tangle, using emacs-async to asynchronously tangle an
856 ;; org file. closely inspired by
857 ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
858 (with-eval-after-load 'org
859 (defvar b/show-async-tangle-results nil
860 "Keep *emacs* async buffers around for later inspection.")
862 (defvar b/show-async-tangle-time nil
863 "Show the time spent tangling the file.")
865 (defun b/async-babel-tangle ()
866 "Tangle org file asynchronously."
868 (let* ((file-tangle-start-time (current-time))
869 (file (buffer-file-name))
870 (file-nodir (file-name-nondirectory file))
871 ;; (async-quiet-switch "-q")
872 (file-noext (file-name-sans-extension file)))
876 (org-babel-tangle-file ,file))
877 (unless b/show-async-tangle-results
880 (message "Tangled %s%s"
882 (if b/show-async-tangle-time
884 (float-time (time-subtract (current-time)
885 ',file-tangle-start-time)))
887 (message "Tangling %s failed" ,file-nodir))))))))
890 'safe-local-variable-values
891 '(eval add-hook 'after-save-hook #'b/async-babel-tangle 'append 'local))
893 ;; *the* right way to do git
896 :bind (("C-x g" . magit-status)
897 ("C-c g g" . magit-status)
898 ("C-c g b" . magit-blame-addition)
899 ("C-c g l" . magit-log-buffer-file))
901 (magit-add-section-hook 'magit-status-sections-hook
902 'magit-insert-modules
903 'magit-insert-stashes
905 ;; (magit-add-section-hook 'magit-status-sections-hook
906 ;; 'magit-insert-ignored-files
907 ;; 'magit-insert-untracked-files
909 (setq magit-repository-directories '(("~/" . 0)
911 (nconc magit-section-initial-visibility-alist
912 '(([unpulled status] . show)
913 ([unpushed status] . show)))
915 (magit-diff-refine-hunk t)
916 (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1)
917 ;; (magit-completing-read-function 'magit-ido-completing-read)
918 :custom-face (magit-diff-file-heading ((t (:weight normal)))))
920 ;; recently opened files
924 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
928 (recentf-max-saved-items 2000))
930 ;; smart M-x enhancement (needed by counsel for history)
931 ;; (use-package smex)
934 ("C-c f ." . find-file)
935 ("C-c f l" . find-library)
936 ("C-c f r" . recentf-open-files)
937 ("C-c x" . execute-extended-command))
943 (:map ido-common-completion-map
944 ([escape] . minibuffer-keyboard-quit)
945 ("DEL" . b/ido-backspace))
948 (defun b/ido-backspace ()
949 "Forward to `backward-delete-char'. On error (read-only), quit."
952 (backward-delete-char 1)
954 (minibuffer-keyboard-quit))))
958 (ido-enable-flex-matching t)
959 ;; (ido-enable-regexp t)
960 ;; (ido-enable-prefix t)
961 (ido-max-window-height 10)
962 (ido-use-virtual-buffers t))
964 (use-package ido-vertical-mode
967 (ido-vertical-mode 1)
969 (ido-vertical-define-keys 'C-n-C-p-up-and-down)
970 (ido-vertical-show-count t))
972 (use-package ido-completing-read+
976 (ido-ubiquitous-mode 1))
978 (use-package crm-custom
983 (use-feature icomplete
996 (:map ivy-minibuffer-map
997 ([escape] . keyboard-escape-quit)
998 ([S-up] . ivy-previous-history-element)
999 ([S-down] . ivy-next-history-element)
1000 ("DEL" . ivy-backward-delete-char))
1004 ivy-use-virtual-buffers t
1005 ivy-virtual-abbreviate 'abbreviate
1006 ivy-count-format "%d/%d ")
1008 (defvar b/ivy-ignore-buffer-modes '(magit-mode erc-mode dired-mode))
1009 (defun b/ivy-ignore-buffer-p (str)
1010 "Return non-nil if str names a buffer with a major mode
1011 derived from one of `b/ivy-ignore-buffer-modes'.
1013 This function is intended for use with `ivy-ignore-buffers'."
1014 (let* ((buf (get-buffer str))
1015 (mode (and buf (buffer-local-value 'major-mode buf))))
1017 (apply #'provided-mode-derived-p mode b/ivy-ignore-buffer-modes))))
1018 (add-to-list 'ivy-ignore-buffers 'b/ivy-ignore-buffer-p)
1022 (ivy-minibuffer-match-face-1 ((t (:background "#eeeeee"))))
1023 (ivy-minibuffer-match-face-2 ((t (:background "#e7e7e7" :weight bold))))
1024 (ivy-minibuffer-match-face-3 ((t (:background "light goldenrod" :weight semi-bold))))
1025 (ivy-minibuffer-match-face-4 ((t (:background "misty rose" :weight semi-bold))))
1026 (ivy-current-match ((((class color) (background light))
1027 :background "#d7d7d7" :foreground "black")
1028 (((class color) (background dark))
1029 :background "#65a7e2" :foreground "black"))))
1034 :bind (("C-s" . swiper-isearch)
1035 ("C-r" . swiper-isearch-backward)
1036 ("C-S-s" . swiper-isearch)))
1038 (use-package counsel
1039 :bind (;; ([remap execute-extended-command] . counsel-M-x)
1040 ;; ([remap find-file] . counsel-find-file)
1041 ("C-c f r" . counsel-recentf)
1042 :map minibuffer-local-map
1043 ("C-r" . counsel-minibuffer-history))
1046 (defalias 'locate #'counsel-locate))
1050 :commands (helm-M-x helm-mini helm-resume)
1051 :bind (("M-x" . helm-M-x)
1052 ("M-y" . helm-show-kill-ring)
1053 ("C-x b" . helm-mini)
1054 ("C-x C-b" . helm-buffers-list)
1055 ("C-x C-f" . helm-find-files)
1056 ("C-h r" . helm-info-emacs)
1057 ("C-s-r" . helm-resume)
1059 ("<tab>" . helm-execute-persistent-action)
1060 ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals
1061 ("C-z" . helm-select-action)) ; List actions
1062 :config (helm-mode 1)))
1067 :bind ("C-c a s e" . eshell)
1069 (eval-when-compile (defvar eshell-prompt-regexp))
1070 (defun b/eshell-quit-or-delete-char (arg)
1072 (if (and (eolp) (looking-back eshell-prompt-regexp nil))
1073 (eshell-life-is-too-much)
1076 (defun b/eshell-clear ()
1078 (let ((inhibit-read-only t))
1080 (eshell-send-input))
1082 (defun b/eshell-setup ()
1083 (make-local-variable 'company-idle-delay)
1084 (defvar company-idle-delay)
1085 (setq company-idle-delay nil)
1086 (bind-keys :map eshell-mode-map
1087 ("C-d" . b/eshell-quit-or-delete-char)
1088 ("C-S-l" . b/eshell-clear)
1089 ("M-r" . counsel-esh-history)
1090 ;; ([tab] . company-complete)
1093 :hook (eshell-mode . b/eshell-setup)
1095 (eshell-hist-ignoredups t)
1096 (eshell-input-filter 'eshell-input-filter-initial-space))
1098 (use-feature ibuffer
1100 (("C-x C-b" . ibuffer)
1101 :map ibuffer-mode-map
1102 ("P" . ibuffer-backward-filter-group)
1103 ("N" . ibuffer-forward-filter-group)
1104 ("M-p" . ibuffer-do-print)
1105 ("M-n" . ibuffer-do-shell-command-pipe-replace))
1107 ;; Use human readable Size column instead of original one
1108 (define-ibuffer-column size-h
1109 (:name "Size" :inline t)
1111 ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0)))
1112 ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0)))
1113 ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0)))
1114 (t (format "%8d" (buffer-size)))))
1116 (ibuffer-saved-filter-groups
1118 ("dired" (mode . dired-mode))
1119 ("org" (mode . org-mode))
1122 (mode . gnus-group-mode)
1123 (mode . gnus-summary-mode)
1124 (mode . gnus-article-mode)
1125 ;; not really, but...
1126 (mode . message-mode)))
1135 (mode . eshell-mode)
1137 (mode . term-mode)))
1140 (mode . python-mode)
1144 (mode . emacs-lisp-mode)
1145 (mode . scheme-mode)
1146 (mode . haskell-mode)
1149 (mode . alloy-mode)))
1152 (mode . bibtex-mode)
1153 (mode . latex-mode)))
1156 (name . "^\\*scratch\\*$")
1157 (name . "^\\*Messages\\*$")))
1158 ("exwm" (mode . exwm-mode))
1159 ("erc" (mode . erc-mode)))))
1161 '((mark modified read-only locked " "
1162 (name 72 72 :left :elide)
1164 (size-h 9 -1 :right)
1166 (mode 16 16 :left :elide)
1167 " " filename-and-process)
1171 :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
1173 (use-feature outline
1175 :hook (prog-mode . outline-minor-mode)
1178 outline-minor-mode-map
1179 ("<s-tab>" . outline-toggle-children)
1180 ("M-p" . outline-previous-visible-heading)
1181 ("M-n" . outline-next-visible-heading)
1182 :prefix-map b/outline-prefix-map
1184 ("TAB" . outline-toggle-children)
1185 ("a" . outline-hide-body)
1186 ("H" . outline-hide-body)
1187 ("S" . outline-show-all)
1188 ("h" . outline-hide-subtree)
1189 ("s" . outline-show-subtree)))
1191 (use-feature ls-lisp
1192 :custom (ls-lisp-dirs-first t))
1196 (setq dired-dwim-target t
1197 dired-listing-switches "-alh"
1198 ls-lisp-use-insert-directory-program nil)
1200 ;; easily diff 2 marked files
1201 ;; https://oremacs.com/2017/03/18/dired-ediff/
1202 (defun dired-ediff-files ()
1204 (require 'dired-aux)
1205 (defvar ediff-after-quit-hook-internal)
1206 (let ((files (dired-get-marked-files))
1207 (wnd (current-window-configuration)))
1208 (if (<= (length files) 2)
1209 (let ((file1 (car files))
1210 (file2 (if (cdr files)
1214 (dired-dwim-target-directory)))))
1215 (if (file-newer-than-file-p file1 file2)
1216 (ediff-files file2 file1)
1217 (ediff-files file1 file2))
1218 (add-hook 'ediff-after-quit-hook-internal
1220 (setq ediff-after-quit-hook-internal nil)
1221 (set-window-configuration wnd))))
1222 (error "no more than 2 files should be marked"))))
1225 (setq dired-guess-shell-alist-user
1226 '(("\\.pdf\\'" "evince" "zathura" "okular")
1227 ("\\.doc\\'" "libreoffice")
1228 ("\\.docx\\'" "libreoffice")
1229 ("\\.ppt\\'" "libreoffice")
1230 ("\\.pptx\\'" "libreoffice")
1231 ("\\.xls\\'" "libreoffice")
1232 ("\\.xlsx\\'" "libreoffice")
1233 ("\\.flac\\'" "mpv")))
1234 :bind (:map dired-mode-map
1235 ("b" . dired-up-directory)
1236 ("e" . dired-ediff-files)
1237 ("E" . dired-toggle-read-only)
1238 ("\\" . dired-hide-details-mode)
1241 (b/dired-start-process "zathura"))))
1242 :hook (dired-mode . dired-hide-details-mode))
1246 (temp-buffer-resize-mode)
1247 (setq help-window-select t))
1251 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
1252 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
1253 (add-to-list 'tramp-default-proxies-alist
1254 (list (regexp-quote (system-name)) nil nil)))
1257 :config (dash-enable-font-lock))
1259 (use-feature doc-view
1260 :bind (:map doc-view-mode-map
1261 ("M-RET" . image-previous-line)))
1266 ;; highlight uncommitted changes in the left fringe
1267 (use-package diff-hl
1270 (setq diff-hl-draw-borders nil)
1271 (global-diff-hl-mode)
1272 :hook (magit-post-refresh . diff-hl-magit-post-refresh))
1274 ;; display Lisp objects at point in the echo area
1276 :when (version< "25" emacs-version)
1277 :config (global-eldoc-mode))
1279 ;; highlight matching parens
1282 :config (show-paren-mode))
1284 (use-feature elec-pair
1286 :config (electric-pair-mode))
1289 :config (column-number-mode)
1291 ;; Save what I copy into clipboard from other applications into Emacs'
1292 ;; kill-ring, which would allow me to still be able to easily access
1293 ;; it in case I kill (cut or copy) something else inside Emacs before
1294 ;; yanking (pasting) what I'd originally intended to.
1295 (save-interprogram-paste-before-kill t))
1297 ;; save minibuffer history
1298 (use-feature savehist
1302 (add-to-list 'savehist-additional-variables 'kill-ring))
1304 ;; automatically save place in files
1305 (use-feature saveplace
1306 :when (version< "25" emacs-version)
1307 :config (save-place-mode))
1309 (use-feature prog-mode
1310 :config (global-prettify-symbols-mode)
1311 (defun indicate-buffer-boundaries-left ()
1312 (setq indicate-buffer-boundaries 'left))
1313 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
1315 (use-feature text-mode
1316 :bind (:map text-mode-map ("C-*" . b/insert-asterism))
1317 :hook (text-mode . indicate-buffer-boundaries-left))
1319 (use-feature conf-mode
1322 (use-feature sh-mode
1325 (use-package company
1327 (:map company-active-map
1328 ([tab] . company-complete-common-or-cycle)
1329 ([escape] . company-abort)
1330 ("C-p" . company-select-previous-or-abort)
1331 ("C-n" . company-select-next-or-abort))
1333 (company-minimum-prefix-length 1)
1334 (company-selection-wrap-around t)
1335 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
1336 (company-dabbrev-downcase nil)
1337 (company-dabbrev-ignore-case nil)
1339 ;; (global-company-mode t)
1342 (use-package flycheck
1344 :hook (prog-mode . flycheck-mode)
1346 (:map flycheck-mode-map
1347 ("M-P" . flycheck-previous-error)
1348 ("M-N" . flycheck-next-error))
1350 ;; Use the load-path from running Emacs when checking elisp files
1351 (setq flycheck-emacs-lisp-load-path 'inherit)
1353 ;; Only flycheck when I actually save the buffer
1354 (setq flycheck-check-syntax-automatically '(mode-enabled save))
1355 :custom (flycheck-mode-line-prefix "flyc"))
1357 (use-feature flyspell)
1359 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
1363 ;; ’ can be part of a word
1364 (setq ispell-local-dictionary-alist
1365 `((nil "[[:alpha:]]" "[^[:alpha:]]"
1366 "['\x2019]" nil ("-B") nil utf-8))
1367 ispell-program-name (executable-find "hunspell"))
1368 ;; don't send ’ to the subprocess
1369 (defun endless/replace-apostrophe (args)
1370 (cons (replace-regexp-in-string
1373 (advice-add #'ispell-send-string :filter-args
1374 #'endless/replace-apostrophe)
1376 ;; convert ' back to ’ from the subprocess
1377 (defun endless/replace-quote (args)
1378 (if (not (derived-mode-p 'org-mode))
1380 (cons (replace-regexp-in-string
1383 (advice-add #'ispell-parse-output :filter-args
1384 #'endless/replace-quote))
1387 :hook (text-mode . abbrev-mode))
1390 ;;; Programming modes
1392 (use-feature lisp-mode
1394 (defun indent-spaces-mode ()
1395 (setq indent-tabs-mode nil))
1396 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
1399 :hook (emacs-lisp-mode . reveal-mode))
1401 (use-feature elisp-mode)
1403 (use-package alloy-mode
1404 :straight (:host github :repo "dwwmmn/alloy-mode")
1406 :config (setq alloy-basic-offset 2)
1407 :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil))))
1409 (eval-when-compile (defvar lean-mode-map))
1410 (use-package lean-mode
1412 :bind (:map lean-mode-map
1413 ("S-SPC" . company-complete))
1415 (require 'lean-input)
1416 (setq default-input-method "Lean"
1417 lean-input-tweak-all '(lean-input-compose
1418 (lean-input-prepend "/")
1419 (lean-input-nonempty))
1420 lean-input-user-translations '(("/" "/")))
1424 (use-package proof-site ; for Coq
1425 :straight proof-general)
1427 (use-package haskell-mode
1429 (setq haskell-indentation-layout-offset 4
1430 haskell-indentation-left-offset 4
1431 flycheck-checker 'haskell-hlint
1432 flycheck-disabled-checkers '(haskell-stack-ghc haskell-ghc)))
1436 :commands dante-mode
1437 :hook (haskell-mode . dante-mode))
1439 (use-package hlint-refactor
1441 :bind (:map hlint-refactor-mode-map
1442 ("C-c l b" . hlint-refactor-refactor-buffer)
1443 ("C-c l r" . hlint-refactor-refactor-at-point))
1444 :hook (haskell-mode . hlint-refactor-mode))
1446 (use-package flycheck-haskell
1447 :after haskell-mode)
1448 ;; alternative: hs-lint https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el
1451 (use-feature sgml-mode
1453 (setq sgml-basic-offset 2))
1455 (use-feature css-mode
1457 (setq css-indent-offset 2))
1459 (use-package web-mode
1463 web-mode-code-indent-offset
1464 web-mode-css-indent-offset
1465 web-mode-markup-indent-offset))
1467 (use-package emmet-mode
1468 :after (:any web-mode css-mode sgml-mode)
1469 :bind* (("C-)" . emmet-next-edit-point)
1470 ("C-(" . emmet-prev-edit-point))
1472 (unbind-key "C-j" emmet-mode-keymap)
1473 (setq emmet-move-cursor-between-quotes t)
1474 :hook (web-mode css-mode html-mode sgml-mode))
1477 (use-package meghanada
1479 (:map meghanada-mode-map
1480 (("C-M-o" . meghanada-optimize-import)
1481 ("C-M-t" . meghanada-import-all)))
1482 :hook (java-mode . meghanada-mode)))
1485 (use-package treemacs
1486 :config (setq treemacs-never-persist t))
1488 (use-package yasnippet
1490 ;; (yas-global-mode)
1493 (use-package lsp-mode
1494 :init (setq lsp-eldoc-render-all nil
1495 lsp-highlight-symbol-at-point nil)
1500 (use-package company-lsp
1503 (setq company-lsp-cache-candidates t
1504 company-lsp-async t))
1508 (setq lsp-ui-sideline-update-mode 'point))
1510 (use-package lsp-java
1512 (add-hook 'java-mode-hook
1514 (setq-local company-backends (list 'company-lsp))))
1516 (add-hook 'java-mode-hook 'lsp-java-enable)
1517 (add-hook 'java-mode-hook 'flycheck-mode)
1518 (add-hook 'java-mode-hook 'company-mode)
1519 (add-hook 'java-mode-hook 'lsp-ui-mode))
1521 (use-package dap-mode
1527 (use-package dap-java
1530 (use-package lsp-java-treemacs
1535 :bind (:map eclim-mode-map ("S-SPC" . company-complete))
1536 :hook ((java-mode . eclim-mode)
1537 (eclim-mode . (lambda ()
1538 (make-local-variable 'company-idle-delay)
1539 (defvar company-idle-delay)
1540 ;; (setq company-idle-delay 0.7)
1541 (setq company-idle-delay nil))))
1543 (eclim-auto-save nil)
1544 ;; (eclimd-default-workspace "~/src/eclipse-workspace-exp")
1545 (eclim-executable "~/.p2/pool/plugins/org.eclim_2.8.0/bin/eclim")
1546 (eclim-eclipse-dirs '("~/usr/eclipse/dsl-2018-09/eclipse"))))
1548 (use-package geiser)
1550 (use-feature geiser-guile
1552 (setq geiser-guile-load-path "~/src/git/guix"))
1559 (font-latex-fontify-sectioning 'color)))
1561 (use-package go-mode)
1563 (use-package po-mode
1565 (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit))))
1567 (use-feature tex-mode
1570 (lambda (p) (string-match "^---?" (car p)))
1571 tex--prettify-symbols-alist)
1572 :hook ((tex-mode . auto-fill-mode)
1573 (tex-mode . flyspell-mode)))
1575 (use-package george-mode
1576 :straight (:host nil :repo "https://git.shemshak.org/amin/george-mode")
1582 (add-to-list 'custom-theme-load-path
1584 (convert-standard-filename "lisp") user-emacs-directory))
1585 (load-theme 'tangomod t)
1587 (use-package smart-mode-line
1588 :commands (sml/apply-theme)
1591 (setq sml/theme 'tangomod)
1593 (smart-mode-line-enable))
1595 (use-package doom-modeline
1598 :hook (after-init . doom-modeline-init)
1600 (doom-modeline-buffer-file-name-style 'relative-to-project))
1602 (use-package doom-themes)
1604 (use-package solarized-theme
1607 (load-theme 'solarized-light t))
1613 (setq x-underline-at-descent-line t)
1614 (let ((line (face-attribute 'mode-line :underline)))
1615 (set-face-attribute 'mode-line nil :overline line)
1616 (set-face-attribute 'mode-line-inactive nil :overline line)
1617 (set-face-attribute 'mode-line-inactive nil :underline line)
1618 (set-face-attribute 'mode-line nil :box nil)
1619 (set-face-attribute 'mode-line-inactive nil :box nil)
1620 (set-face-attribute 'mode-line-inactive nil :background "#e1e1e1")) ; d3d7cf
1621 (moody-replace-mode-line-buffer-identification)
1622 (moody-replace-vc-mode))
1624 (use-package mini-modeline
1627 :config (mini-modeline-mode))
1629 (defvar b/org-mode-font-lock-keywords
1630 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
1631 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
1632 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
1633 (4 '(:foreground "#c5c8c6") t))) ; title
1634 "For use with the `doom-tomorrow-night' theme.")
1636 (defun b/lights-on ()
1637 "Enable my favourite light theme."
1639 (mapc #'disable-theme custom-enabled-themes)
1640 (load-theme 'tangomod t)
1641 (sml/apply-theme 'tangomod)
1642 (font-lock-remove-keywords
1643 'org-mode b/org-mode-font-lock-keywords)
1644 (when (featurep 'erc-hl-nicks)
1645 (erc-hl-nicks-reset-face-table))
1646 (when (featurep 'exwm-systemtray)
1647 (exwm-systemtray--refresh)))
1649 (defun b/lights-off ()
1652 (mapc #'disable-theme custom-enabled-themes)
1653 (load-theme 'doom-one t)
1654 (sml/apply-theme 'automatic)
1655 (font-lock-add-keywords
1656 'org-mode b/org-mode-font-lock-keywords t)
1657 (when (featurep 'erc-hl-nicks)
1658 (erc-hl-nicks-reset-face-table))
1659 (when (featurep 'exwm-systemtray)
1660 (exwm-systemtray--refresh)))
1663 ("C-c t d" . b/lights-off)
1664 ("C-c t l" . b/lights-on))
1667 ;;; Emacs enhancements & auxiliary packages
1670 :config (setq Man-width 80))
1672 (use-package which-key
1675 (which-key-add-key-based-replacements
1676 ;; prefixes for global prefixes and minor modes
1680 "C-c 8 -" "typo/dashes"
1681 "C-c 8 <" "typo/left-brackets"
1682 "C-c 8 >" "typo/right-brackets"
1683 "C-x RET" "coding system"
1685 "C-x @" "event modifiers"
1686 "C-x a" "abbrev/expand"
1687 "C-x r" "rectangle/register/bookmark"
1689 "C-x v" "version control"
1693 ;; prefixes for my personal bindings
1695 "C-c a" "applications"
1700 "C-c c" "compile-and-comments"
1706 "C-c m" "multiple-cursors"
1707 "C-c P" "projectile"
1708 "C-c P s" "projectile/search"
1709 "C-c P x" "projectile/execute"
1710 "C-c P 4" "projectile/other-window"
1711 "C-c p" "package management"
1720 ;; prefixes for major modes
1721 (which-key-add-major-mode-key-based-replacements 'message-mode
1722 "C-c f n" "footnote")
1723 (which-key-add-major-mode-key-based-replacements 'org-mode
1724 "C-c C-v" "org-babel")
1725 (which-key-add-major-mode-key-based-replacements 'web-mode
1726 "C-c C-a" "web/attributes"
1727 "C-c C-b" "web/blocks"
1729 "C-c C-e" "web/element"
1730 "C-c C-t" "web/tags")
1734 (which-key-add-column-padding 5)
1735 (which-key-max-description-length 32))
1737 (use-package crux ; results in Waiting for git... [2 times]
1739 :bind (("C-c d" . crux-duplicate-current-line-or-region)
1740 ("C-c D" . crux-duplicate-and-comment-current-line-or-region)
1741 ("C-c f C" . crux-copy-file-preserve-attributes)
1742 ("C-c f D" . crux-delete-file-and-buffer)
1743 ("C-c f R" . crux-rename-file-and-buffer)
1744 ("C-c j" . crux-top-join-line)
1745 ("C-S-j" . crux-top-join-line)))
1748 :bind (("C-a" . mwim-beginning-of-code-or-line)
1749 ("C-e" . mwim-end-of-code-or-line)
1750 ("<home>" . mwim-beginning-of-line-or-code)
1751 ("<end>" . mwim-end-of-line-or-code)))
1753 (use-package projectile
1755 :bind-keymap ("C-c P" . projectile-command-map)
1759 (defun b/projectile-mode-line-fun ()
1760 "Report project name and type in the modeline."
1761 (let ((project-name (projectile-project-name))
1762 (project-type (projectile-project-type)))
1764 projectile-mode-line-prefix
1766 (format ":%s" project-type)
1768 (setq projectile-mode-line-function 'b/projectile-mode-line-fun)
1770 (defun my-projectile-invalidate-cache (&rest _args)
1771 ;; ignore the args to `magit-checkout'
1772 (projectile-invalidate-cache nil))
1774 (eval-after-load 'magit-branch
1776 (advice-add 'magit-checkout
1777 :after #'my-projectile-invalidate-cache)
1778 (advice-add 'magit-branch-and-checkout
1779 :after #'my-projectile-invalidate-cache)))
1781 (projectile-completion-system 'ivy)
1782 (projectile-mode-line-prefix " proj"))
1784 (use-package helpful
1787 (("C-S-h c" . helpful-command)
1788 ("C-S-h f" . helpful-callable) ; helpful-function
1789 ("C-S-h v" . helpful-variable)
1790 ("C-S-h k" . helpful-key)
1791 ("C-S-h p" . helpful-at-point)))
1793 (use-package unkillable-scratch
1796 (unkillable-scratch 1)
1798 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1801 ;; | make pretty boxed quotes like this
1803 (use-package boxquote
1806 (:prefix-map b/boxquote-prefix-map
1808 ("b" . boxquote-buffer)
1809 ("B" . boxquote-insert-buffer)
1810 ("d" . boxquote-defun)
1811 ("F" . boxquote-insert-file)
1812 ("hf" . boxquote-describe-function)
1813 ("hk" . boxquote-describe-key)
1814 ("hv" . boxquote-describe-variable)
1815 ("hw" . boxquote-where-is)
1816 ("k" . boxquote-kill)
1817 ("p" . boxquote-paragraph)
1818 ("q" . boxquote-boxquote)
1819 ("r" . boxquote-region)
1820 ("s" . boxquote-shell-command)
1821 ("t" . boxquote-text)
1822 ("T" . boxquote-title)
1823 ("u" . boxquote-unbox)
1824 ("U" . boxquote-unbox-region)
1825 ("y" . boxquote-yank)
1826 ("M-q" . boxquote-fill-paragraph)
1827 ("M-w" . boxquote-kill-ring-save)))
1829 (use-package orgalist
1830 ;; http://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00007.html
1833 :hook (message-mode . orgalist-mode))
1835 ;; easily type pretty quotes & other typography, like ‘’“”-–—«»‹›
1839 (typo-global-mode 1)
1840 :hook (((text-mode erc-mode web-mode) . typo-mode)
1841 (tex-mode . (lambda ()(typo-mode -1)))))
1843 ;; highlight TODOs in buffers
1844 (use-package hl-todo
1847 (global-hl-todo-mode))
1849 (use-package shrink-path
1853 (defvar user-@-host (concat (user-login-name) "@" (system-name) ":"))
1854 (defun +eshell/prompt ()
1855 (concat (propertize user-@-host 'face 'default)
1856 (propertize (abbreviate-file-name default-directory)
1857 'face 'font-lock-comment-face)
1858 (propertize "\n" 'face 'default)
1859 (if (= (user-uid) 0)
1860 (propertize "#" 'face 'red)
1861 (propertize "$" 'face 'default))
1862 (propertize " " 'face 'default)))
1863 (setq eshell-prompt-regexp "\\(.*\n\\)*[$#] "
1864 eshell-prompt-function #'+eshell/prompt))
1866 (use-package eshell-up
1868 :commands eshell-up)
1870 (use-package multi-term
1873 :bind (("C-c a s m m" . multi-term)
1874 ("C-c a s m d" . multi-term-dedicated-toggle)
1875 ("C-c a s m p" . multi-term-prev)
1876 ("C-c a s m n" . multi-term-next)
1878 ("C-c C-j" . term-char-mode))
1880 (setq multi-term-program "screen"
1881 multi-term-program-switches (concat "-c"
1882 (getenv "XDG_CONFIG_HOME")
1884 ;; TODO: add separate bindings for connecting to existing
1885 ;; session vs. always creating a new one
1886 multi-term-dedicated-select-after-open-p t
1887 multi-term-dedicated-window-height 20
1888 multi-term-dedicated-max-window-height 30
1890 '(("C-c C-c" . term-interrupt-subjob)
1891 ("C-c C-e" . term-send-esc)
1892 ("C-c C-j" . term-line-mode)
1894 ;; ("C-y" . term-paste)
1895 ("C-y" . term-send-raw)
1896 ("M-f" . term-send-forward-word)
1897 ("M-b" . term-send-backward-word)
1898 ("M-p" . term-send-up)
1899 ("M-n" . term-send-down)
1900 ("M-j" . term-send-raw-meta)
1901 ("M-y" . term-send-raw-meta)
1902 ("M-/" . term-send-raw-meta)
1903 ("M-0" . term-send-raw-meta)
1904 ("M-1" . term-send-raw-meta)
1905 ("M-2" . term-send-raw-meta)
1906 ("M-3" . term-send-raw-meta)
1907 ("M-4" . term-send-raw-meta)
1908 ("M-5" . term-send-raw-meta)
1909 ("M-6" . term-send-raw-meta)
1910 ("M-7" . term-send-raw-meta)
1911 ("M-8" . term-send-raw-meta)
1912 ("M-9" . term-send-raw-meta)
1913 ("<C-backspace>" . term-send-backward-kill-word)
1914 ("<M-DEL>" . term-send-backward-kill-word)
1915 ("M-d" . term-send-delete-word)
1916 ("M-," . term-send-raw)
1917 ("M-." . comint-dynamic-complete))
1918 term-unbind-key-alist
1919 '("C-z" "C-x" "C-c" "C-h"
1923 (use-package page-break-lines
1926 (page-break-lines-max-width fill-column)
1928 (global-page-break-lines-mode))
1930 (use-package expand-region
1931 :bind ("C-=" . er/expand-region))
1933 (use-package multiple-cursors
1935 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
1936 (:prefix-map b/mc-prefix-map
1938 ("c" . mc/edit-lines)
1939 ("n" . mc/mark-next-like-this)
1940 ("p" . mc/mark-previous-like-this)
1941 ("a" . mc/mark-all-like-this))))
1947 (use-package yasnippet
1950 (defconst yas-verbosity-cur yas-verbosity)
1951 (setq yas-verbosity 2)
1952 (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
1954 (setq yas-verbosity yas-verbosity-cur)
1956 (defun b/yas--maybe-expand-key-filter (cmd)
1957 (when (and (yas--maybe-expand-key-filter cmd)
1958 (not (bound-and-true-p git-commit-mode)))
1960 (defconst b/yas-maybe-expand
1961 '(menu-item "" yas-expand :filter b/yas--maybe-expand-key-filter))
1962 (define-key yas-minor-mode-map
1963 (kbd "SPC") b/yas-maybe-expand)
1967 (use-package debbugs
1970 :repo "emacs-straight/debbugs"
1971 :files (:defaults "Debbugs.wsdl")))
1973 (use-package org-ref
1975 (b/setq-every '("~/usr/org/references.bib")
1976 reftex-default-bibliography
1977 org-ref-default-bibliography)
1979 org-ref-bibliography-notes "~/usr/org/notes.org"
1980 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1984 :init (setq alert-default-style 'notifications))
1986 ;; (use-package fill-column-indicator)
1988 (use-package emojify
1990 :hook (erc-mode . emojify-mode))
1994 (("C-c w e" . (lambda ()
1996 (split-window-right)
1998 (erc-switch-to-buffer)))
1999 ("C-c w s l" . (lambda ()
2001 (split-window-right)
2003 ("C-c w s j" . (lambda ()
2005 (split-window-below)
2007 ("C-c w q" . quit-window))
2009 (split-width-threshold 150))
2011 (use-feature windmove
2014 (("C-c w h" . windmove-left)
2015 ("C-c w j" . windmove-down)
2016 ("C-c w k" . windmove-up)
2017 ("C-c w l" . windmove-right)
2018 ("C-c w H" . windmove-swap-states-left)
2019 ("C-c w J" . windmove-swap-states-down)
2020 ("C-c w K" . windmove-swap-states-up)
2021 ("C-c w L" . windmove-swap-states-right)))
2025 :bind ("C-c a p" . pass)
2026 :hook (pass-mode . View-exit))
2028 (use-package pdf-tools
2030 :bind (:map pdf-view-mode-map
2031 ("<C-XF86Back>" . pdf-history-backward)
2032 ("<mouse-8>" . pdf-history-backward)
2033 ("<drag-mouse-8>" . pdf-history-backward)
2034 ("<C-XF86Forward>" . pdf-history-forward)
2035 ("<mouse-9>" . pdf-history-forward)
2036 ("<drag-mouse-9>" . pdf-history-forward)
2037 ("M-RET" . image-previous-line)
2038 ("C-s" . isearch-forward)
2039 ("s s" . isearch-forward))
2040 :config (pdf-tools-install nil t)
2041 :custom (pdf-view-resize-factor 1.05))
2043 (use-package org-pdftools
2044 :straight (:host github :repo "fuxialexander/org-pdftools")
2048 (with-eval-after-load 'org
2049 (require 'org-pdftools)))
2051 (use-package biblio)
2054 :hook (latex-mode . reftex-mode))
2056 (use-feature reftex-cite
2058 :disabled ; enable to disable
2059 ; reftex-cite's default choice
2062 (defun reftex-get-bibkey-default ()
2063 "If the cursor is in a citation macro, return the word before the macro."
2064 (let* ((macro (reftex-what-macro 1)))
2066 (when (and macro (string-match "cite" (car macro)))
2067 (goto-char (cdr macro)))
2068 (reftex-this-word)))))
2070 (use-package minions
2072 :config (minions-mode))
2076 (dmenu-prompt-string "run: ")
2077 (dmenu-save-file (b/var "dmenu-items")))
2080 ;; TODO: fix build by properly building the eosd-pixbuf.c module
2081 ;; e.g. see https://github.com/raxod502/straight.el/issues/386
2083 :straight (:host github :repo "clarete/eosd")
2089 (use-package nnreddit
2094 (nnreddit-python-command "python3"))
2096 (use-package hyperbole
2098 :straight (hyperbole
2099 :host github :repo "rswgnu/hyperbole"
2100 :files ("*.el" ("kotl" "kotl/*.el")
2101 "DEMO" "man/*.info" "man/*.texi")))
2103 (use-package oddmuse-curl
2104 :straight (:host github :repo "kensanata/oddmuse-curl")
2109 '(("EmacsConf" "https://emacsconf.org" utf-8 "question" nil)
2110 ("EmacsConf 2019" "https://emacsconf.org/2019" utf-8 "question" nil))
2113 (oddmuse-username "bandali"))
2115 (use-package debpaste
2117 (debpaste-paste-is-hidden t))
2120 ;;; Email (with Gnus)
2122 (defvar b/maildir (expand-file-name "~/mail/"))
2123 (with-eval-after-load 'recentf
2124 (add-to-list 'recentf-exclude b/maildir))
2127 b/gnus-init-file (b/etc "gnus")
2128 mail-user-agent 'gnus-user-agent
2129 read-mail-command 'gnus)
2132 :bind (("s-m" . gnus)
2133 ("s-M" . gnus-unplugged)
2135 ("C-c a M" . gnus-unplugged))
2138 gnus-select-method '(nnnil "")
2139 gnus-secondary-select-methods
2140 '((nnimap "shemshak"
2141 (nnimap-stream plain)
2142 (nnimap-address "127.0.0.1")
2143 (nnimap-server-port 143)
2144 (nnimap-authenticator plain)
2145 (nnimap-user "amin@shemshak.local"))
2147 (nnimap-stream plain)
2148 (nnimap-address "127.0.0.1")
2149 (nnimap-server-port 143)
2150 (nnimap-authenticator plain)
2151 (nnimap-user "bandali@gnu.local")
2152 (nnimap-inbox "INBOX")
2153 (nnimap-split-methods 'nnimap-split-fancy)
2154 (nnimap-split-fancy (|
2155 ;; (: gnus-registry-split-fancy-with-parent)
2156 ;; (: gnus-group-split-fancy "INBOX" t "INBOX")
2158 (list ".*<\\(.*\\)\\.\\(non\\)?gnu\\.org>.*" "l.\\1")
2159 ;; *.lists.sr.ht, omitting one dot if present
2160 ;; add more \\.?\\([^.]*\\) if needed
2161 (list ".*<~\\(.*\\)/\\([^.]*\\)\\.?\\([^.]*\\)\\.lists.sr.ht>.*" "l.~\\1.\\2\\3")
2163 (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters")
2165 (list ".*atreus.freelists.org" "l.atreus")
2166 (list ".*deepspec.lists.cs.princeton.edu" "l.deepspec")
2167 ;; (list ".*haskell-art.we.lurk.org" "l.haskell.art") ;d
2168 (list ".*haskell-cafe.haskell.org" "l.haskell-cafe")
2169 ;; (list ".*notmuch.notmuchmail.org" "l.notmuch") ;u
2170 ;; (list ".*dev.lists.parabola.nu" "l.parabola-dev") ;u
2171 ;; ----------------------------------
2172 ;; legend: (u)nsubscribed | (d)ead
2173 ;; ----------------------------------
2174 ;; otherwise, leave mail in INBOX
2177 (nnimap-stream plain)
2178 (nnimap-address "127.0.0.1")
2179 (nnimap-server-port 143)
2180 (nnimap-authenticator plain)
2181 (nnimap-user "abandali@uw.local")
2182 (nnimap-inbox "INBOX")
2183 (nnimap-split-methods 'nnimap-split-fancy)
2184 (nnimap-split-fancy (|
2185 ;; (: gnus-registry-split-fancy-with-parent)
2187 ("subject" "SE\\s-?212" "course.se212-f19")
2188 (from "SE\\s-?212" "course.se212-f19")
2192 (nnimap-stream plain)
2193 (nnimap-address "127.0.0.1")
2194 (nnimap-server-port 143)
2195 (nnimap-authenticator plain)
2196 (nnimap-user "abandali@csc.uw.local")))
2197 gnus-message-archive-group "nnimap+gnu:INBOX"
2200 (to-address . "atreus@freelists.org")
2201 (to-list . "atreus@freelists.org"))
2203 (to-address . "deepspec@lists.cs.princeton.edu")
2204 (to-list . "deepspec@lists.cs.princeton.edu")
2205 (list-identifier . "\\[deepspec\\]"))
2207 (to-address . "emacs-devel@gnu.org")
2208 (to-list . "emacs-devel@gnu.org"))
2209 ("l\\.help-gnu-emacs"
2210 (to-address . "help-gnu-emacs@gnu.org")
2211 (to-list . "help-gnu-emacs@gnu.org"))
2212 ("l\\.info-gnu-emacs"
2213 (to-address . "info-gnu-emacs@gnu.org")
2214 (to-list . "info-gnu-emacs@gnu.org"))
2215 ("l\\.emacs-orgmode"
2216 (to-address . "emacs-orgmode@gnu.org")
2217 (to-list . "emacs-orgmode@gnu.org")
2218 (list-identifier . "\\[O\\]"))
2219 ("l\\.emacs-tangents"
2220 (to-address . "emacs-tangents@gnu.org")
2221 (to-list . "emacs-tangents@gnu.org"))
2222 ("l\\.emacsconf-committee"
2223 (to-address . "emacsconf-committee@gnu.org")
2224 (to-list . "emacsconf-committee@gnu.org"))
2225 ("l\\.emacsconf-discuss"
2226 (to-address . "emacsconf-discuss@gnu.org")
2227 (to-list . "emacsconf-discuss@gnu.org"))
2228 ("l\\.emacsconf-register"
2229 (to-address . "emacsconf-register@gnu.org")
2230 (to-list . "emacsconf-register@gnu.org"))
2231 ("l\\.emacsconf-submit"
2232 (to-address . "emacsconf-submit@gnu.org")
2233 (to-list . "emacsconf-submit@gnu.org"))
2234 ("l\\.fencepost-users"
2235 (to-address . "fencepost-users@gnu.org")
2236 (to-list . "fencepost-users@gnu.org")
2237 (list-identifier . "\\[Fencepost-users\\]"))
2238 ("l\\.gnewsense-art"
2239 (to-address . "gnewsense-art@nongnu.org")
2240 (to-list . "gnewsense-art@nongnu.org")
2241 (list-identifier . "\\[gNewSense-art\\]"))
2242 ("l\\.gnewsense-dev"
2243 (to-address . "gnewsense-dev@nongnu.org")
2244 (to-list . "gnewsense-dev@nongnu.org")
2245 (list-identifier . "\\[Gnewsense-dev\\]"))
2246 ("l\\.gnewsense-users"
2247 (to-address . "gnewsense-users@nongnu.org")
2248 (to-list . "gnewsense-users@nongnu.org")
2249 (list-identifier . "\\[gNewSense-users\\]"))
2250 ("l\\.gnunet-developers"
2251 (to-address . "gnunet-developers@gnu.org")
2252 (to-list . "gnunet-developers@gnu.org")
2253 (list-identifier . "\\[GNUnet-developers\\]"))
2255 (to-address . "help-gnunet@gnu.org")
2256 (to-list . "help-gnunet@gnu.org")
2257 (list-identifier . "\\[Help-gnunet\\]"))
2259 (to-address . "bug-gnuzilla@gnu.org")
2260 (to-list . "bug-gnuzilla@gnu.org")
2261 (list-identifier . "\\[Bug-gnuzilla\\]"))
2263 (to-address . "gnuzilla-dev@gnu.org")
2264 (to-list . "gnuzilla-dev@gnu.org")
2265 (list-identifier . "\\[Gnuzilla-dev\\]"))
2267 (to-address . "guile-devel@gnu.org")
2268 (to-list . "guile-devel@gnu.org"))
2270 (to-address . "guile-user@gnu.org")
2271 (to-list . "guile-user@gnu.org"))
2273 (to-address . "guix-devel@gnu.org")
2274 (to-list . "guix-devel@gnu.org"))
2276 (to-address . "help-guix@gnu.org")
2277 (to-list . "help-guix@gnu.org"))
2279 (to-address . "info-guix@gnu.org")
2280 (to-list . "info-guix@gnu.org"))
2281 ("l\\.savannah-hackers-public"
2282 (to-address . "savannah-hackers-public@gnu.org")
2283 (to-list . "savannah-hackers-public@gnu.org"))
2284 ("l\\.savannah-users"
2285 (to-address . "savannah-users@gnu.org")
2286 (to-list . "savannah-users@gnu.org"))
2288 (to-address . "www-commits@gnu.org")
2289 (to-list . "www-commits@gnu.org"))
2291 (to-address . "www-discuss@gnu.org")
2292 (to-list . "www-discuss@gnu.org"))
2294 (to-address . "haskell-art@we.lurk.org")
2295 (to-list . "haskell-art@we.lurk.org")
2296 (list-identifier . "\\[haskell-art\\]"))
2298 (to-address . "haskell-cafe@haskell.org")
2299 (to-list . "haskell-cafe@haskell.org")
2300 (list-identifier . "\\[Haskell-cafe\\]"))
2302 (to-address . "notmuch@notmuchmail.org")
2303 (to-list . "notmuch@notmuchmail.org"))
2305 (to-address . "dev@lists.parabola.nu")
2306 (to-list . "dev@lists.parabola.nu")
2307 (list-identifier . "\\[Dev\\]"))
2308 ("l\\.~bandali\\.public-inbox"
2309 (to-address . "~bandali/public-inbox@lists.sr.ht")
2310 (to-list . "~bandali/public-inbox@lists.sr.ht"))
2311 ("l\\.~sircmpwn\\.free-writers-club"
2312 (to-address . "~sircmpwn/free-writers-club@lists.sr.ht")
2313 (to-list . "~sircmpwn/free-writers-club@lists.sr.ht"))
2314 ("l\\.~sircmpwn\\.srht-admins"
2315 (to-address . "~sircmpwn/sr.ht-admins@lists.sr.ht")
2316 (to-list . "~sircmpwn/sr.ht-admins@lists.sr.ht"))
2317 ("l\\.~sircmpwn\\.srht-announce"
2318 (to-address . "~sircmpwn/sr.ht-announce@lists.sr.ht")
2319 (to-list . "~sircmpwn/sr.ht-announce@lists.sr.ht"))
2320 ("l\\.~sircmpwn\\.srht-dev"
2321 (to-address . "~sircmpwn/sr.ht-dev@lists.sr.ht")
2322 (to-list . "~sircmpwn/sr.ht-dev@lists.sr.ht"))
2323 ("l\\.~sircmpwn\\.srht-discuss"
2324 (to-address . "~sircmpwn/sr.ht-discuss@lists.sr.ht")
2325 (to-list . "~sircmpwn/sr.ht-discuss@lists.sr.ht"))
2327 (to-address . "webmasters@gnu.org")
2328 (to-list . "webmasters@gnu.org"))
2335 gnus-large-newsgroup 50
2336 gnus-home-directory (b/var "gnus/")
2337 gnus-directory (concat gnus-home-directory "news/")
2338 message-directory (concat gnus-home-directory "mail/")
2339 nndraft-directory (concat gnus-home-directory "drafts/")
2340 gnus-save-newsrc-file nil
2341 gnus-read-newsrc-file nil
2342 gnus-interactive-exit nil
2343 gnus-gcc-mark-as-read t)
2345 (when (version< emacs-version "27")
2347 'nnmail-split-abbrev-alist
2348 '(list . "list-id\\|list-post\\|x-mailing-list\\|x-beenthere\\|x-loop")
2351 ;; (gnus-registry-initialize)
2353 (with-eval-after-load 'recentf
2354 (add-to-list 'recentf-exclude gnus-home-directory)))
2356 (use-feature gnus-art
2359 gnus-buttonized-mime-types '("multipart/\\(signed\\|encrypted\\)")
2360 gnus-sorted-header-list '("^From:"
2376 "^Mail-Followup-To:"
2380 "^X-detected-operating-system:"
2385 gnus-visible-headers (mapconcat 'identity
2386 gnus-sorted-header-list
2388 ;; local-lapsed article dates
2389 ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11
2390 gnus-article-date-headers '(user-defined)
2391 gnus-article-time-format
2393 (let* ((date (format-time-string "%a, %d %b %Y %T %z" time))
2394 (local (article-make-date-line date 'local))
2395 (combined-lapsed (article-make-date-line date
2398 (string-match " (.+" combined-lapsed)
2399 (match-string 0 combined-lapsed))))
2400 (concat local lapsed))))
2402 :map gnus-article-mode-map
2403 ("M-L" . org-store-link)))
2405 (use-feature gnus-sum
2406 :bind (:map gnus-summary-mode-map
2407 :prefix-map b/gnus-summary-prefix-map
2409 ("r" . gnus-summary-reply)
2410 ("w" . gnus-summary-wide-reply)
2411 ("v" . gnus-summary-show-raw-article))
2414 :map gnus-summary-mode-map
2415 ("M-L" . org-store-link))
2416 :hook (gnus-summary-mode . b/no-mouse-autoselect-window)
2418 (gnus-thread-sort-functions '(gnus-thread-sort-by-number
2419 gnus-thread-sort-by-subject
2420 gnus-thread-sort-by-date)))
2422 (use-feature gnus-msg
2424 (defvar b/gnu-signature "Amin Bandali
2425 Free Software Activist | GNU Maintainer & Webmaster
2426 GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103
2427 https://bandali.eu.org")
2428 (defvar b/shemshak-signature "Amin Bandali
2429 https://shemshak.org/~amin")
2430 (defvar b/uw-signature "Amin Bandali, MMath Student
2431 Cheriton School of Computer Science
2432 University of Waterloo
2433 https://bandali.eu.org")
2434 (defvar b/csc-signature "Amin Bandali
2436 Computer Science Club, University of Waterloo
2437 https://csclub.uwaterloo.ca/~abandali")
2438 (setq gnus-message-replysign t
2441 (address "bandali@gnu.org")
2442 (signature b/gnu-signature))
2443 ("nnimap\\+gnu:l\\..*"
2445 ((header "subject" "ThankCRM")
2446 (to "webmasters-comment@gnu.org")
2448 (eval (setq b/message-cite-say-hi nil)))
2449 ("nnimap\\+shemshak:.*"
2450 (address "amin@shemshak.org")
2452 (signature b/shemshak-signature)
2453 (gcc "nnimap+shemshak:Sent")
2454 (eval (setq b/message-cite-say-hi t)))
2456 (address "bandali@uwaterloo.ca")
2458 (signature b/uw-signature))
2459 ("nnimap\\+uw:INBOX"
2460 (gcc "\"nnimap+uw:Sent Items\""))
2462 (address "bandali@csclub.uwaterloo.ca")
2463 (signature b/csc-signature)
2464 (gcc "nnimap+csc:Sent"))))
2465 ;; :hook (gnus-message-setup . mml-secure-message-sign)
2468 (use-feature gnus-topic
2469 :hook (gnus-group-mode . gnus-topic-mode)
2470 :config (setq gnus-topic-line-format "%i[ %A: %(%{%n%}%) ]%v\n"))
2472 (use-feature gnus-agent
2474 (setq gnus-agent-synchronize-flags 'ask)
2475 :hook (gnus-group-mode . gnus-agent-mode))
2477 (use-feature gnus-group
2479 (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)"))
2482 ;; problematic with ebdb's popup, *EBDB-Gnus*
2483 (use-feature gnus-win
2485 (setq gnus-use-full-window nil)))
2487 (use-feature gnus-dired
2488 :commands gnus-dired-mode
2490 (add-hook 'dired-mode-hook 'gnus-dired-mode))
2493 (use-feature gnus-utils
2495 (gnus-completing-read-function 'gnus-ido-completing-read)))
2497 (use-feature mm-decode
2499 (setq mm-discouraged-alternatives '("text/html" "text/richtext")
2500 mm-decrypt-option 'known
2501 mm-verify-option 'known))
2505 (mm-uu-diff-groups-regexp
2506 "\\(gmane\\|gnu\\|l\\)\\..*\\(diff\\|commit\\|cvs\\|bug\\|dev\\)"))
2508 (use-feature sendmail
2510 (setq sendmail-program (executable-find "msmtp")
2511 ;; message-sendmail-extra-arguments '("-v" "-d")
2512 mail-specify-envelope-from t
2513 mail-envelope-from 'header))
2515 (use-feature message
2516 :bind (:map message-mode-map ("<C-return>" . b/insert-asterism))
2518 ;; redefine for a simplified In-Reply-To header
2519 ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67)
2520 (defun message-make-in-reply-to ()
2521 "Return the In-Reply-To header for this message."
2522 (when message-reply-headers
2523 (let ((from (mail-header-from message-reply-headers))
2524 (msg-id (mail-header-id message-reply-headers)))
2528 (defconst b/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:")
2529 (defconst message-cite-style-bandali
2530 '((message-cite-function 'message-cite-original)
2531 (message-citation-line-function 'message-insert-formatted-citation-line)
2532 (message-cite-reply-position 'traditional)
2533 (message-yank-prefix "> ")
2534 (message-yank-cited-prefix ">")
2535 (message-yank-empty-prefix ">")
2536 (message-citation-line-format
2537 (if b/message-cite-say-hi
2538 (concat "Hi %F,\n\n" b/message-cite-style-format)
2539 b/message-cite-style-format)))
2540 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
2541 (setq ;; message-cite-style 'message-cite-style-bandali
2542 message-kill-buffer-on-exit t
2543 message-send-mail-function 'message-send-mail-with-sendmail
2544 message-sendmail-envelope-from 'header
2545 message-subscribed-address-functions
2546 '(gnus-find-subscribed-addresses)
2547 message-dont-reply-to-names
2548 "\\(\\(\\(amin\\|mab\\)@shemshak\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|\\(a?bandali@\\(csclub\\.\\)?uwaterloo\\.ca\\)\\)")
2549 ;; (require 'company-ebdb)
2550 :hook (;; (message-setup . mml-secure-message-sign-pgpmime)
2551 (message-mode . flyspell-mode)
2552 (message-mode . (lambda ()
2553 ;; (setq fill-column 65
2554 ;; message-fill-column 65)
2555 (make-local-variable 'company-idle-delay)
2556 (setq company-idle-delay 0.2))))
2558 ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
2559 ;; (message-header-to ((t (:foreground "#111" :weight normal))))
2560 ;; (message-header-cc ((t (:foreground "#333" :weight normal))))
2562 (message-elide-ellipsis "[...]\n"))
2566 (use-feature mml-sec
2568 (mml-secure-openpgp-encrypt-to-self t)
2569 (mml-secure-openpgp-sign-with-sender t))
2571 (use-feature footnote
2574 ;; (setq footnote-start-tag ""
2575 ;; footnote-end-tag ""
2576 ;; footnote-style 'unicode)
2578 (:map message-mode-map
2579 :prefix-map b/footnote-prefix-map
2581 ("a" . footnote-add-footnote)
2582 ("b" . footnote-back-to-message)
2583 ("c" . footnote-cycle-style)
2584 ("d" . footnote-delete-footnote)
2585 ("g" . footnote-goto-footnote)
2586 ("r" . footnote-renumber-footnotes)
2587 ("s" . footnote-set-style)))
2592 :bind (:map gnus-group-mode-map ("e" . ebdb))
2594 (setq ebdb-sources (b/var "ebdb"))
2595 (with-eval-after-load 'swiper
2596 (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t)))
2598 (use-feature ebdb-com
2601 (use-feature ebdb-complete
2604 ;; (setq ebdb-complete-mail 'capf)
2605 (ebdb-complete-enable))
2607 (use-feature ebdb-message
2611 ;; (use-package company-ebdb
2613 ;; (defun company-ebdb--post-complete (_) nil))
2615 (use-feature ebdb-gnus
2618 (ebdb-gnus-window-size 0.3))
2620 (use-feature ebdb-mua
2623 :custom (ebdb-mua-pop-up t))
2625 ;; (use-package ebdb-message
2628 ;; (use-package ebdb-vcard
2631 (use-package message-x)
2634 (use-package message-x
2636 (message-x-completion-alist
2638 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address)
2641 (quote message-newgroups-header-regexp))
2642 message-newgroups-header-regexp message-newsgroups-header-regexp)
2643 . message-expand-group))))))
2646 (use-package gnus-harvest
2647 :commands gnus-harvest-install
2650 (if (featurep 'message-x)
2651 (gnus-harvest-install 'message-x)
2652 (gnus-harvest-install))))
2654 (use-feature gnus-article-treat-patch
2659 ;; note: be sure to customize faces with `:foreground "white"' when
2660 ;; using a theme with a white/light background :)
2661 (setq ft/gnus-article-patch-conditions
2662 '("^@@ -[0-9]+,[0-9]+ \\+[0-9]+,[0-9]+ @@")))
2665 ;;; IRC (with ERC and ZNC)
2668 :bind (("C-c b b" . erc-switch-to-buffer)
2670 ("M-a" . erc-track-switch-buffer))
2672 (erc-join-buffer 'bury)
2673 (erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
2674 (erc-nick "bandali")
2676 (erc-rename-buffers t)
2677 (erc-server-reconnect-attempts 5)
2678 (erc-server-reconnect-timeout 3)
2680 (defun erc-cmd-OPME ()
2681 "Request chanserv to op me."
2682 (erc-message "PRIVMSG"
2683 (format "chanserv op %s %s"
2684 (erc-default-target)
2685 (erc-current-nick)) nil))
2686 (defun erc-cmd-DEOPME ()
2687 "Deop myself from current channel."
2688 (erc-cmd-DEOP (format "%s" (erc-current-nick))))
2689 (add-to-list 'erc-modules 'keep-place)
2690 (add-to-list 'erc-modules 'notifications)
2691 (add-to-list 'erc-modules 'spelling)
2692 (add-to-list 'erc-modules 'scrolltoplace)
2693 (erc-update-modules))
2695 (use-feature erc-fill
2698 (erc-fill-column 77)
2699 (erc-fill-function 'erc-fill-static)
2700 (erc-fill-static-center 18))
2702 (use-feature erc-pcomplete
2705 (erc-pcomplete-nick-postfix ", "))
2707 (use-feature erc-track
2709 :bind (("C-c a e t d" . erc-track-disable)
2710 ("C-c a e t e" . erc-track-enable))
2712 (erc-track-enable-keybindings nil)
2713 (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT"
2714 "324" "329" "332" "333" "353" "477"))
2715 (erc-track-position-in-mode-line t)
2716 (erc-track-priority-faces-only 'all)
2717 (erc-track-shorten-function nil))
2719 (use-package erc-hl-nicks
2722 (use-package erc-scrolltoplace
2726 :straight (:host nil :repo "https://git.shemshak.org/amin/znc.el")
2727 :bind (("C-c a e e" . znc-erc)
2728 ("C-c a e a" . znc-all))
2730 (let ((pwd (let ((auth (auth-source-search :host "znca")))
2732 ((null auth) (error "Couldn't find znca's authinfo"))
2733 (t (funcall (plist-get (car auth) :secret)))))))
2735 `(("znc.shemshak.org" 1337 t
2736 ((freenode "amin/freenode" ,pwd)))
2737 ("znc.shemshak.org" 1337 t
2738 ((moznet "amin/moznet" ,pwd)))
2739 ("znc.shemshak.org" 1337 t
2740 ((oftc "amin/oftc" ,pwd)))))))
2743 ;;; Post initialization
2745 (message "Loading %s...done (%.3fs)" user-init-file
2746 (float-time (time-subtract (current-time)
2747 b/before-user-init-time)))
2749 ;;; init.el ends here