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 ;; keep ~/.emacs.d clean
188 (use-package no-littering
191 (defalias 'b
/etc
'no-littering-expand-etc-file-name
)
192 (defalias 'b
/var
'no-littering-expand-var-file-name
))
194 ;; separate custom file (don't want it mixing with init.el)
198 (setq custom-file
(b/etc
"custom.el"))
199 (when (file-exists-p custom-file
)
201 ;; while at it, treat themes as safe
202 (setf custom-safe-themes t
)
203 ;; only one custom theme at a time
205 (defadvice load-theme
(before clear-previous-themes activate
)
206 "Clear existing theme settings instead of layering them"
207 (mapc #'disable-theme custom-enabled-themes
))))
209 ;; load the secrets file if it exists, otherwise show a warning
212 (load (b/etc
"secrets"))))
214 ;; better $PATH (and other environment variable) handling
215 (use-package exec-path-from-shell
218 (setq exec-path-from-shell-arguments nil
219 exec-path-from-shell-check-startup-files nil
)
221 (exec-path-from-shell-initialize)
222 ;; while we're at it, let's fix access to our running ssh-agent
223 (exec-path-from-shell-copy-env "SSH_AGENT_PID")
224 (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
226 ;; start up emacs server. see
227 ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server
230 :config
(or (server-running-p) (server-mode)))
239 (defmacro b
/setq-every
(value &rest vars
)
240 "Set all the variables from VARS to value VALUE."
241 (declare (indent defun
) (debug t
))
242 `(progn ,@(mapcar (lambda (x) (list 'setq x value
)) vars
)))
244 (defun b/start-process
(program &rest args
)
245 "Same as `start-process', but doesn't bother about name and buffer."
246 (let ((process-name (concat program
"_process"))
247 (buffer-name (generate-new-buffer-name
248 (concat program
"_output"))))
249 (apply #'start-process
250 process-name buffer-name program args
)))
252 (defun b/dired-start-process
(program &optional args
)
253 "Open current file with a PROGRAM."
254 ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can
255 ;; be nil, so remove it).
256 (apply #'b
/start-process
258 (remove nil
(list args
(dired-get-file-for-visit)))))
260 (defun b/add-elisp-section
()
264 (insert "\n\f\n;;; "))
266 (defun b/no-mouse-autoselect-window
()
267 "Conveniently disable `focus-follows-mouse'.
268 For disabling the behaviour for certain buffers and/or modes."
269 (make-local-variable 'mouse-autoselect-window
)
270 (setq mouse-autoselect-window nil
))
275 ;;;; C-level customizations
279 enable-recursive-minibuffers t
280 resize-mini-windows t
281 ;; more useful frame titles
282 frame-title-format
'("" invocation-name
" - "
284 (if (buffer-file-name)
285 (abbreviate-file-name (buffer-file-name))
287 ;; i don't feel like jumping out of my chair every now and again; so
288 ;; don't BEEP! at me, emacs
289 ring-bell-function
'ignore
292 ;; scroll-conservatively 10000
294 scroll-conservatively
10
295 scroll-preserve-screen-position
1
296 ;; focus follows mouse
297 mouse-autoselect-window t
)
300 ;; always use space for indentation
308 (dolist (ft (fontset-list))
312 (font-spec :name
"Source Code Pro" :size
14))
316 (font-spec :name
"DejaVu Sans Mono")
323 ;; :name "Symbola monospacified for DejaVu Sans Mono")
329 ;; (font-spec :name "DejaVu Sans Mono")
335 (font-spec :name
"DejaVu Sans Mono" :size
14)
339 ;;;; Elisp-level customizations
345 ;; don't need to see the startup echo area message
346 (advice-add #'display-startup-echo-area-message
:override
#'ignore
)
348 ;; i want *scratch* as my startup buffer
349 (initial-buffer-choice t
)
350 ;; i don't need the default hint
351 (initial-scratch-message nil
)
352 ;; use customizable text-mode as major mode for *scratch*
353 ;; (initial-major-mode 'text-mode)
354 ;; inhibit buffer list when more than 2 files are loaded
355 (inhibit-startup-buffer-menu t
)
356 ;; don't need to see the startup screen or echo area message
357 (inhibit-startup-screen t
)
358 (inhibit-startup-echo-area-message user-login-name
))
364 ;; backups (C-h v make-backup-files RET)
365 (backup-by-copying t
)
367 (delete-old-versions t
)
370 (auto-save-file-name-transforms
371 `((".*" ,(b/var
"auto-save/") t
)))
373 ;; insert newline at the end of files
374 (require-final-newline t
)
376 ;; open read-only file buffers in view-mode
377 ;; (enables niceties like `q' for quit)
380 ;; disable disabled commands
381 (setq disabled-command-function nil
)
383 ;; lazy-person-friendly yes/no prompts
384 (defalias 'yes-or-no-p
#'y-or-n-p
)
386 ;; enable automatic reloading of changed buffers and files
387 (use-feature autorevert
390 (global-auto-revert-mode 1)
392 (auto-revert-verbose nil
)
393 (global-auto-revert-non-file-buffers nil
))
395 ;; time and battery in mode-line
401 (display-time-default-load-average nil
)
402 (display-time-format "%a %b %-e, %-l:%M%P"))
407 (display-battery-mode)
409 (battery-mode-line-format " %p%% %t"))
415 ;; (fringe-mode '(3 . 1))
421 ;; enable winner-mode (C-h f winner-mode RET)
426 ;; don't display *compilation* buffer on success. based on
427 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
428 ;; instead of the now obsolete `flet'.
429 (defun b/compilation-finish-function
(buffer outstr
)
430 (unless (string-match "finished" outstr
)
431 (switch-to-buffer-other-window buffer
))
434 (setq compilation-finish-functions
#'b
/compilation-finish-function
)
438 (defadvice compilation-start
439 (around inhibit-display
440 (command &optional mode name-function highlight-regexp
))
441 (if (not (string-match "^\\(find\\|grep\\)" command
))
442 (cl-letf (((symbol-function 'display-buffer
) #'ignore
))
443 (save-window-excursion ad-do-it
))
445 (ad-activate 'compilation-start
))
449 ;; allow scrolling in Isearch
450 (isearch-allow-scroll t
)
451 ;; search for non-ASCII characters: i’d like non-ASCII characters such
452 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
453 ;; counterpart. shoutout to
454 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
455 (search-default-mode #'char-fold-to-regexp
))
457 ;; uncomment to extend the above behaviour to query-replace
461 (replace-char-fold t
)))
464 :bind
("C-x v C-=" . vc-ediff
))
467 :config
(add-hook 'ediff-after-quit-hook-internal
'winner-undo
)
468 :custom
((ediff-window-setup-function 'ediff-setup-windows-plain
)
469 (ediff-split-window-function 'split-window-horizontally
)))
471 (use-feature face-remap
473 ;; gentler font resizing
474 (text-scale-mode-step 1.05))
479 (setq mouse-wheel-scroll-amount
'(1 ((shift) .
1)) ; one line at a time
480 mouse-wheel-progressive-speed nil
; don't accelerate scrolling
481 mouse-wheel-follow-mouse t
)) ; scroll window under mouse
483 (use-feature pixel-scroll
485 :config
(pixel-scroll-mode 1))
487 (use-feature epg-config
489 ((epg-gpg-program (executable-find "gpg"))))
497 ("C-c e b" . eval-buffer
)
498 ("C-c e e" . eval-last-sexp
)
499 ("C-c e r" . eval-region
)
501 ("C-c e i" . emacs-init-time
)
502 ("C-c e u" . emacs-uptime
)
503 ("C-c e v" . emacs-version
)
505 ("C-c F m" . make-frame-command
)
506 ("C-c F d" . delete-frame
)
507 ("C-c F D" . server-edit
)
509 ("C-S-h C" . describe-char
)
510 ("C-S-h F" . describe-face
)
512 ("C-x k" . kill-this-buffer
)
513 ("C-x K" . kill-buffer
)
514 ("C-x s" . save-buffer
)
515 ("C-x S" . save-some-buffers
)
517 :map emacs-lisp-mode-map
518 ("<C-return>" . b
/add-elisp-section
))
520 (when (display-graphic-p)
521 (unbind-key "C-z" global-map
))
524 ;; for back and forward mouse keys
525 ("<XF86Back>" . previous-buffer
)
526 ("<mouse-8>" . previous-buffer
)
527 ("<drag-mouse-8>" . previous-buffer
)
528 ("<XF86Forward>" . next-buffer
)
529 ("<mouse-9>" . next-buffer
)
530 ("<drag-mouse-9>" . next-buffer
)
531 ("<drag-mouse-2>" . kill-this-buffer
)
532 ("<drag-mouse-3>" . ivy-switch-buffer
))
535 :prefix-map b
/straight-prefix-map
537 ("u" . straight-use-package
)
538 ("f" . straight-freeze-versions
)
539 ("t" . straight-thaw-versions
)
540 ("P" . straight-prune-build
)
541 ("g" . straight-get-recipe
)
542 ("r" . b
/reload-init
)
543 ;; M-x ^straight-.*-all$
544 ("a c" . straight-check-all
)
545 ("a f" . straight-fetch-all
)
546 ("a m" . straight-merge-all
)
547 ("a n" . straight-normalize-all
)
548 ("a F" . straight-pull-all
)
549 ("a P" . straight-push-all
)
550 ("a r" . straight-rebuild-all
)
551 ;; M-x ^straight-.*-package$
552 ("p c" . straight-check-package
)
553 ("p f" . straight-fetch-package
)
554 ("p m" . straight-merge-package
)
555 ("p n" . straight-normalize-package
)
556 ("p F" . straight-pull-package
)
557 ("p P" . straight-push-package
)
558 ("p r" . straight-rebuild-package
))
561 ;;; Essential packages
566 ;; make class name the buffer name, truncating beyond 60 characters
567 (defun b/exwm-rename-buffer
()
569 (exwm-workspace-rename-buffer
570 (concat exwm-class-name
":"
571 (if (<= (length exwm-title
) 60) exwm-title
572 (concat (substring exwm-title
0 59) "...")))))
575 :hook
((exwm-update-class . b
/exwm-rename-buffer
)
576 (exwm-update-title . b
/exwm-rename-buffer
)))
578 (use-feature exwm-config
581 :hook
(exwm-init . exwm-config--fix
/ido-buffer-window-other-frame
))
583 (use-feature exwm-input
585 :after exwm-workspace
587 (defun b/exwm-ws-prev-index
()
588 "Return the index for the previous EXWM workspace, wrapping
590 (if (= exwm-workspace-current-index
0)
591 (1- exwm-workspace-number
)
592 (1- exwm-workspace-current-index
)))
594 (defun b/exwm-ws-next-index
()
595 "Return the index for the next EXWM workspace, wrapping
597 (if (= exwm-workspace-current-index
598 (1- exwm-workspace-number
))
600 (1+ exwm-workspace-current-index
)))
602 ;; shorten 'C-c C-q' to 'C-q'
603 (define-key exwm-mode-map
[?\C-q
] #'exwm-input-send-next-key
)
605 (setq exwm-input-global-keys
606 `(([?\s-R
] . exwm-reset
)
607 ([?\s-
\\] . exwm-workspace-switch
)
608 ([?\s-\s
] .
(lambda (command)
610 (list (read-shell-command "➜ ")))
611 (start-process-shell-command
612 command nil command
)))
613 ([s-return
] .
(lambda ()
615 (start-process "" nil
"urxvt")))
616 ([?\C-\s-\s
] . counsel-linux-app
)
617 ([?\M-\s-\s
] .
(lambda ()
619 (start-process-shell-command
620 "rofi-pass" nil
"rofi-pass")))
621 ([?\s-h
] . windmove-left
)
622 ([?\s-j
] . windmove-down
)
623 ([?\s-k
] . windmove-up
)
624 ([?\s-l
] . windmove-right
)
625 ([?\s-H
] . windmove-swap-states-left
)
626 ([?\s-J
] . windmove-swap-states-down
)
627 ([?\s-K
] . windmove-swap-states-up
)
628 ([?\s-L
] . windmove-swap-states-right
)
629 ([?\M-\s-h
] . shrink-window-horizontally
)
630 ([?\M-\s-l
] . enlarge-window-horizontally
)
631 ([?\M-\s-k
] . shrink-window
)
632 ([?\M-\s-j
] . enlarge-window
)
633 ([?\s-\
[] .
(lambda ()
635 (exwm-workspace-switch-create
636 (b/exwm-ws-prev-index
))))
637 ([?\s-\
]] .
(lambda ()
639 (exwm-workspace-switch-create
640 (b/exwm-ws-next-index
))))
641 ([?\s-
{] .
(lambda ()
643 (exwm-workspace-move-window
644 (b/exwm-ws-prev-index
))))
645 ([?\s-
}] .
(lambda ()
647 (exwm-workspace-move-window
648 (b/exwm-ws-next-index
))))
649 ,@(mapcar (lambda (i)
650 `(,(kbd (format "s-%d" i
)) .
653 (exwm-workspace-switch-create ,i
))))
654 (number-sequence 0 (1- exwm-workspace-number
)))
655 ([?\s-t
] . exwm-floating-toggle-floating
)
656 ([?\s-f
] . exwm-layout-toggle-fullscreen
)
657 ([?\s-w
] .
(lambda ()
659 (kill-buffer (current-buffer))))
660 ([?\s-q
] .
(lambda ()
662 (exwm-manage--kill-client)))
663 ([?\s-
\'] .
(lambda ()
665 (start-process-shell-command
666 "rofi-light" nil
"rofi-light")))
670 (start-process "" nil "pamixer" "--toggle-mute")))
671 ([XF86AudioLowerVolume] .
675 "" nil "pamixer" "--allow-boost" "--decrease" "5")))
676 ([XF86AudioRaiseVolume] .
680 "" nil "pamixer" "--allow-boost" "--increase" "5")))
684 (start-process "" nil "mpc" "toggle")))
688 (start-process "" nil "mpc" "prev")))
692 (start-process "" nil "mpc" "next")))
696 (start-process "" nil "dm-tool" "lock")))
697 ([\s-XF86Back] . previous-buffer)
698 ([\s-XF86Forward] . next-buffer)))
700 ;; Line-editing shortcuts
701 (setq exwm-input-simulation-keys
706 ([?\M-f] . [C-right])
714 ([?\C-k] . [S-end ?\C-x])
721 ([?\M-d] . [C-S-right ?\C-x])
722 ([?\M-\d] . [C-S-left ?\C-x])
726 ([?\C-g] . [escape]))))
728 (use-feature exwm-manage
732 (exwm-manage-finish . (lambda ()
733 (when exwm-class-name
735 ((string= exwm-class-name "Abrowser")
736 (exwm-input-set-local-simulation-keys
737 `(,@exwm-input-simulation-keys
738 ([?\C-\S-d] . [?\C-d])
740 ([?\s-q] . [?\C-q]))))
741 ((string= exwm-class-name "URxvt")
742 (exwm-input-set-local-simulation-keys
743 '(([?\C-c ?\C-c] . [?\C-c])
744 ([?\C-c ?\C-u] . [?\C-u]))))
745 ((string= exwm-class-name "Zathura")
746 (exwm-input-set-local-simulation-keys
748 ([?\C-n] . [C-down])))))))))
750 (use-feature exwm-randr
756 (use-feature exwm-systemtray
760 (exwm-systemtray-enable))
762 (use-feature exwm-workspace
766 (exwm-workspace-number 4))
768 (use-package exwm-edit
772 ;; use the org-plus-contrib package to get the whole deal
773 (use-package org-plus-contrib)
778 (setq org-src-tab-acts-natively t
779 org-src-preserve-indentation nil
780 org-edit-src-content-indentation 0
781 org-link-email-description-format "Email %c: %s" ; %.30s
782 org-highlight-latex-and-related '(entities)
783 org-use-speed-commands t
784 org-startup-folded 'content
785 org-catch-invisible-edits 'show-and-error
787 (when (version< org-version "9.3")
788 (setq org-email-link-description-format
789 org-link-email-description-format))
790 (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t)
791 (add-to-list 'org-modules 'org-habit)
793 (("C-c a o a" . org-agenda)
795 ("M-L" . org-insert-last-stored-link)
796 ("M-O" . org-toggle-link-display))
797 :hook ((org-mode . org-indent-mode)
798 (org-mode . auto-fill-mode)
799 (org-mode . flyspell-mode))
801 (org-pretty-entities t)
802 (org-agenda-files '("~/usr/org/todos/personal.org"
803 "~/usr/org/todos/habits.org"
804 "~/src/git/masters-thesis/todo.org"))
805 (org-agenda-start-on-weekday 0)
806 (org-agenda-time-leading-zero t)
807 (org-habit-graph-column 44)
808 (org-latex-packages-alist '(("" "listings") ("" "color")))
810 '(org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21"))))
811 '(org-block ((t (:background "#1d1f21"))))
812 '(org-latex-and-related ((t (:foreground "#b294bb")))))
814 (use-feature ox-latex
817 (setq org-latex-listings 'listings
818 ;; org-latex-prefer-user-labels t
820 (add-to-list 'org-latex-classes
821 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
822 ("\\section{%s}" . "\\section*{%s}")
823 ("\\subsection{%s}" . "\\subsection*{%s}")
824 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
825 ("\\paragraph{%s}" . "\\paragraph*{%s}")
826 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
828 (require 'ox-beamer))
830 (use-feature ox-extra
832 (ox-extras-activate '(latex-header-blocks ignore-headlines)))
834 ;; asynchronous tangle, using emacs-async to asynchronously tangle an
835 ;; org file. closely inspired by
836 ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
837 (with-eval-after-load 'org
838 (defvar b/show-async-tangle-results nil
839 "Keep *emacs* async buffers around for later inspection.")
841 (defvar b/show-async-tangle-time nil
842 "Show the time spent tangling the file.")
844 (defun b/async-babel-tangle ()
845 "Tangle org file asynchronously."
847 (let* ((file-tangle-start-time (current-time))
848 (file (buffer-file-name))
849 (file-nodir (file-name-nondirectory file))
850 ;; (async-quiet-switch "-q")
851 (file-noext (file-name-sans-extension file)))
855 (org-babel-tangle-file ,file))
856 (unless b/show-async-tangle-results
859 (message "Tangled %s%s"
861 (if b/show-async-tangle-time
863 (float-time (time-subtract (current-time)
864 ',file-tangle-start-time)))
866 (message "Tangling %s failed" ,file-nodir))))))))
869 'safe-local-variable-values
870 '(eval add-hook 'after-save-hook #'b/async-babel-tangle 'append 'local))
872 ;; *the* right way to do git
875 :bind (("C-x g" . magit-status)
876 ("C-c g g" . magit-status)
877 ("C-c g b" . magit-blame-addition)
878 ("C-c g l" . magit-log-buffer-file))
880 (magit-add-section-hook 'magit-status-sections-hook
881 'magit-insert-modules
882 'magit-insert-stashes
884 ;; (magit-add-section-hook 'magit-status-sections-hook
885 ;; 'magit-insert-ignored-files
886 ;; 'magit-insert-untracked-files
888 (setq magit-repository-directories '(("~/" . 0)
890 (nconc magit-section-initial-visibility-alist
891 '(([unpulled status] . show)
892 ([unpushed status] . show)))
894 (magit-diff-refine-hunk t)
895 (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1)
896 :custom-face (magit-diff-file-heading ((t (:weight normal)))))
898 ;; recently opened files
902 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
904 (recentf-max-saved-items 2000))
906 ;; smart M-x enhancement (needed by counsel for history)
912 (:map ivy-minibuffer-map
913 ([escape] . keyboard-escape-quit)
914 ([S-up] . ivy-previous-history-element)
915 ([S-down] . ivy-next-history-element)
916 ("DEL" . ivy-backward-delete-char))
920 ivy-use-virtual-buffers t
921 ivy-virtual-abbreviate 'abbreviate
922 ivy-count-format "%d/%d ")
924 (defvar b/ivy-ignore-buffer-modes '(magit-mode erc-mode dired-mode))
925 (defun b/ivy-ignore-buffer-p (str)
926 "Return non-nil if str names a buffer with a major mode
927 derived from one of `b/ivy-ignore-buffer-modes'.
929 This function is intended for use with `ivy-ignore-buffers'."
930 (let* ((buf (get-buffer str))
931 (mode (and buf (buffer-local-value 'major-mode buf))))
933 (apply #'provided-mode-derived-p mode b/ivy-ignore-buffer-modes))))
934 (add-to-list 'ivy-ignore-buffers 'b/ivy-ignore-buffer-p)
938 ;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold))))
939 ;; (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold))))
940 ;; (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold))))
945 :bind (("C-s" . swiper-isearch)
947 ("C-S-s" . isearch-forward)))
951 :bind (([remap execute-extended-command] . counsel-M-x)
952 ([remap find-file] . counsel-find-file)
953 ("C-c b b" . ivy-switch-buffer)
954 ("C-c f ." . counsel-find-file)
955 ("C-c f l" . counsel-find-library)
956 ("C-c f r" . counsel-recentf)
957 ("C-c x" . counsel-M-x)
958 :map minibuffer-local-map
959 ("C-r" . counsel-minibuffer-history))
962 (defalias 'locate #'counsel-locate))
966 :commands (helm-M-x helm-mini helm-resume)
967 :bind (("M-x" . helm-M-x)
968 ("M-y" . helm-show-kill-ring)
969 ("C-x b" . helm-mini)
970 ("C-x C-b" . helm-buffers-list)
971 ("C-x C-f" . helm-find-files)
972 ("C-h r" . helm-info-emacs)
973 ("C-s-r" . helm-resume)
975 ("<tab>" . helm-execute-persistent-action)
976 ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals
977 ("C-z" . helm-select-action)) ; List actions
978 :config (helm-mode 1)))
983 :bind ("C-c a s e" . eshell)
985 (eval-when-compile (defvar eshell-prompt-regexp))
986 (defun b/eshell-quit-or-delete-char (arg)
988 (if (and (eolp) (looking-back eshell-prompt-regexp nil))
989 (eshell-life-is-too-much)
992 (defun b/eshell-clear ()
994 (let ((inhibit-read-only t))
998 (defun b/eshell-setup ()
999 (make-local-variable 'company-idle-delay)
1000 (defvar company-idle-delay)
1001 (setq company-idle-delay nil)
1002 (bind-keys :map eshell-mode-map
1003 ("C-d" . b/eshell-quit-or-delete-char)
1004 ("C-S-l" . b/eshell-clear)
1005 ("M-r" . counsel-esh-history)
1006 ([tab] . company-complete)))
1008 :hook (eshell-mode . b/eshell-setup)
1010 (eshell-hist-ignoredups t)
1011 (eshell-input-filter 'eshell-input-filter-initial-space))
1013 (use-feature ibuffer
1015 (("C-x C-b" . ibuffer)
1016 :map ibuffer-mode-map
1017 ("P" . ibuffer-backward-filter-group)
1018 ("N" . ibuffer-forward-filter-group)
1019 ("M-p" . ibuffer-do-print)
1020 ("M-n" . ibuffer-do-shell-command-pipe-replace))
1022 ;; Use human readable Size column instead of original one
1023 (define-ibuffer-column size-h
1024 (:name "Size" :inline t)
1026 ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0)))
1027 ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0)))
1028 ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0)))
1029 (t (format "%8d" (buffer-size)))))
1031 (ibuffer-saved-filter-groups
1033 ("dired" (mode . dired-mode))
1034 ("org" (mode . org-mode))
1037 (mode . gnus-group-mode)
1038 (mode . gnus-summary-mode)
1039 (mode . gnus-article-mode)
1040 ;; not really, but...
1041 (mode . message-mode)))
1050 (mode . eshell-mode)
1052 (mode . term-mode)))
1055 (mode . python-mode)
1059 (mode . emacs-lisp-mode)
1060 (mode . scheme-mode)
1061 (mode . haskell-mode)
1064 (mode . alloy-mode)))
1067 (mode . bibtex-mode)
1068 (mode . latex-mode)))
1071 (name . "^\\*scratch\\*$")
1072 (name . "^\\*Messages\\*$")))
1073 ("exwm" (mode . exwm-mode))
1074 ("erc" (mode . erc-mode)))))
1076 '((mark modified read-only locked " "
1077 (name 72 72 :left :elide)
1079 (size-h 9 -1 :right)
1081 (mode 16 16 :left :elide)
1082 " " filename-and-process)
1086 :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
1088 (use-feature outline
1090 :hook (prog-mode . outline-minor-mode)
1093 outline-minor-mode-map
1094 ("<s-tab>" . outline-toggle-children)
1095 ("M-p" . outline-previous-visible-heading)
1096 ("M-n" . outline-next-visible-heading)
1097 :prefix-map b/outline-prefix-map
1099 ("TAB" . outline-toggle-children)
1100 ("a" . outline-hide-body)
1101 ("H" . outline-hide-body)
1102 ("S" . outline-show-all)
1103 ("h" . outline-hide-subtree)
1104 ("s" . outline-show-subtree)))
1106 (use-feature ls-lisp
1107 :custom (ls-lisp-dirs-first t))
1111 (setq dired-listing-switches "-alh"
1112 ls-lisp-use-insert-directory-program nil)
1114 ;; easily diff 2 marked files
1115 ;; https://oremacs.com/2017/03/18/dired-ediff/
1116 (defun dired-ediff-files ()
1118 (require 'dired-aux)
1119 (defvar ediff-after-quit-hook-internal)
1120 (let ((files (dired-get-marked-files))
1121 (wnd (current-window-configuration)))
1122 (if (<= (length files) 2)
1123 (let ((file1 (car files))
1124 (file2 (if (cdr files)
1128 (dired-dwim-target-directory)))))
1129 (if (file-newer-than-file-p file1 file2)
1130 (ediff-files file2 file1)
1131 (ediff-files file1 file2))
1132 (add-hook 'ediff-after-quit-hook-internal
1134 (setq ediff-after-quit-hook-internal nil)
1135 (set-window-configuration wnd))))
1136 (error "no more than 2 files should be marked"))))
1139 (setq dired-guess-shell-alist-user
1140 '(("\\.pdf\\'" "evince" "zathura" "okular")
1141 ("\\.doc\\'" "libreoffice")
1142 ("\\.docx\\'" "libreoffice")
1143 ("\\.ppt\\'" "libreoffice")
1144 ("\\.pptx\\'" "libreoffice")
1145 ("\\.xls\\'" "libreoffice")
1146 ("\\.xlsx\\'" "libreoffice")
1147 ("\\.flac\\'" "mpv")))
1148 :bind (:map dired-mode-map
1149 ("b" . dired-up-directory)
1150 ("e" . dired-ediff-files)
1151 ("E" . dired-toggle-read-only)
1152 ("\\" . dired-hide-details-mode)
1155 (b/dired-start-process "zathura"))))
1156 :hook (dired-mode . dired-hide-details-mode))
1160 (temp-buffer-resize-mode)
1161 (setq help-window-select t))
1165 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
1166 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
1167 (add-to-list 'tramp-default-proxies-alist
1168 (list (regexp-quote (system-name)) nil nil)))
1171 :config (dash-enable-font-lock))
1173 (use-feature doc-view
1174 :bind (:map doc-view-mode-map
1175 ("M-RET" . image-previous-line)))
1180 ;; highlight uncommitted changes in the left fringe
1181 (use-package diff-hl
1184 (setq diff-hl-draw-borders nil)
1185 (global-diff-hl-mode)
1186 :hook (magit-post-refresh . diff-hl-magit-post-refresh))
1188 ;; display Lisp objects at point in the echo area
1190 :when (version< "25" emacs-version)
1191 :config (global-eldoc-mode))
1193 ;; highlight matching parens
1196 :config (show-paren-mode))
1198 (use-feature elec-pair
1200 :config (electric-pair-mode))
1203 :config (column-number-mode)
1205 ;; Save what I copy into clipboard from other applications into Emacs'
1206 ;; kill-ring, which would allow me to still be able to easily access
1207 ;; it in case I kill (cut or copy) something else inside Emacs before
1208 ;; yanking (pasting) what I'd originally intended to.
1209 (save-interprogram-paste-before-kill t))
1211 ;; save minibuffer history
1212 (use-feature savehist
1216 (add-to-list 'savehist-additional-variables 'kill-ring))
1218 ;; automatically save place in files
1219 (use-feature saveplace
1220 :when (version< "25" emacs-version)
1221 :config (save-place-mode))
1223 (use-feature prog-mode
1224 :config (global-prettify-symbols-mode)
1225 (defun indicate-buffer-boundaries-left ()
1226 (setq indicate-buffer-boundaries 'left))
1227 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
1229 (use-feature text-mode
1230 :hook (text-mode . indicate-buffer-boundaries-left))
1232 (use-feature conf-mode
1235 (use-feature sh-mode
1238 (use-package company
1241 (:map company-active-map
1242 ([tab] . company-complete-common-or-cycle)
1243 ([escape] . company-abort))
1245 (company-minimum-prefix-length 1)
1246 (company-selection-wrap-around t)
1247 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
1248 (company-dabbrev-downcase nil)
1249 (company-dabbrev-ignore-case nil)
1251 (global-company-mode t))
1253 (use-package flycheck
1255 :hook (prog-mode . flycheck-mode)
1257 (:map flycheck-mode-map
1258 ("M-P" . flycheck-previous-error)
1259 ("M-N" . flycheck-next-error))
1261 ;; Use the load-path from running Emacs when checking elisp files
1262 (setq flycheck-emacs-lisp-load-path 'inherit)
1264 ;; Only flycheck when I actually save the buffer
1265 (setq flycheck-check-syntax-automatically '(mode-enabled save))
1266 :custom (flycheck-mode-line-prefix "flyc"))
1268 (use-feature flyspell)
1270 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
1274 ;; ’ can be part of a word
1275 (setq ispell-local-dictionary-alist
1276 `((nil "[[:alpha:]]" "[^[:alpha:]]"
1277 "['\x2019]" nil ("-B") nil utf-8))
1278 ispell-program-name (executable-find "hunspell"))
1279 ;; don't send ’ to the subprocess
1280 (defun endless/replace-apostrophe (args)
1281 (cons (replace-regexp-in-string
1284 (advice-add #'ispell-send-string :filter-args
1285 #'endless/replace-apostrophe)
1287 ;; convert ' back to ’ from the subprocess
1288 (defun endless/replace-quote (args)
1289 (if (not (derived-mode-p 'org-mode))
1291 (cons (replace-regexp-in-string
1294 (advice-add #'ispell-parse-output :filter-args
1295 #'endless/replace-quote))
1298 :hook (text-mode . abbrev-mode))
1301 ;;; Programming modes
1303 (use-feature lisp-mode
1305 (defun indent-spaces-mode ()
1306 (setq indent-tabs-mode nil))
1307 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
1310 :hook (emacs-lisp-mode . reveal-mode))
1312 (use-feature elisp-mode)
1314 (use-package alloy-mode
1315 :straight (:host github :repo "dwwmmn/alloy-mode")
1317 :config (setq alloy-basic-offset 2))
1319 (eval-when-compile (defvar lean-mode-map))
1320 (use-package lean-mode
1321 :straight (:host github :repo "leanprover/lean-mode"
1322 :fork (:repo "notbandali/lean-mode" :branch "remove-cl"))
1324 :bind (:map lean-mode-map
1325 ("S-SPC" . company-complete))
1327 (require 'lean-input)
1328 (setq default-input-method "Lean"
1329 lean-input-tweak-all '(lean-input-compose
1330 (lean-input-prepend "/")
1331 (lean-input-nonempty))
1332 lean-input-user-translations '(("/" "/")))
1336 (use-package proof-site ; for Coq
1337 :straight proof-general)
1339 (use-package haskell-mode
1341 (setq haskell-indentation-layout-offset 4
1342 haskell-indentation-left-offset 4
1343 flycheck-checker 'haskell-hlint
1344 flycheck-disabled-checkers '(haskell-stack-ghc haskell-ghc)))
1348 :commands dante-mode
1349 :hook (haskell-mode . dante-mode))
1351 (use-package hlint-refactor
1353 :bind (:map hlint-refactor-mode-map
1354 ("C-c l b" . hlint-refactor-refactor-buffer)
1355 ("C-c l r" . hlint-refactor-refactor-at-point))
1356 :hook (haskell-mode . hlint-refactor-mode))
1358 (use-package flycheck-haskell
1359 :after haskell-mode)
1360 ;; alternative: hs-lint https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el
1363 (use-feature sgml-mode
1365 (setq sgml-basic-offset 2))
1367 (use-feature css-mode
1369 (setq css-indent-offset 2))
1371 (use-package web-mode
1375 web-mode-code-indent-offset
1376 web-mode-css-indent-offset
1377 web-mode-markup-indent-offset))
1379 (use-package emmet-mode
1380 :after (:any web-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 (web-mode css-mode html-mode sgml-mode))
1389 (use-package meghanada
1391 (:map meghanada-mode-map
1392 (("C-M-o" . meghanada-optimize-import)
1393 ("C-M-t" . meghanada-import-all)))
1394 :hook (java-mode . meghanada-mode)))
1397 (use-package treemacs
1398 :config (setq treemacs-never-persist t))
1400 (use-package yasnippet
1402 ;; (yas-global-mode)
1405 (use-package lsp-mode
1406 :init (setq lsp-eldoc-render-all nil
1407 lsp-highlight-symbol-at-point nil)
1412 (use-package company-lsp
1415 (setq company-lsp-cache-candidates t
1416 company-lsp-async t))
1420 (setq lsp-ui-sideline-update-mode 'point))
1422 (use-package lsp-java
1424 (add-hook 'java-mode-hook
1426 (setq-local company-backends (list 'company-lsp))))
1428 (add-hook 'java-mode-hook 'lsp-java-enable)
1429 (add-hook 'java-mode-hook 'flycheck-mode)
1430 (add-hook 'java-mode-hook 'company-mode)
1431 (add-hook 'java-mode-hook 'lsp-ui-mode))
1433 (use-package dap-mode
1439 (use-package dap-java
1442 (use-package lsp-java-treemacs
1447 :bind (:map eclim-mode-map ("S-SPC" . company-complete))
1448 :hook ((java-mode . eclim-mode)
1449 (eclim-mode . (lambda ()
1450 (make-local-variable 'company-idle-delay)
1451 (defvar company-idle-delay)
1452 ;; (setq company-idle-delay 0.7)
1453 (setq company-idle-delay nil))))
1455 (eclim-auto-save nil)
1456 ;; (eclimd-default-workspace "~/src/eclipse-workspace-exp")
1457 (eclim-executable "~/.p2/pool/plugins/org.eclim_2.8.0/bin/eclim")
1458 (eclim-eclipse-dirs '("~/usr/eclipse/dsl-2018-09/eclipse"))))
1460 (use-package geiser)
1462 (use-feature geiser-guile
1464 (setq geiser-guile-load-path "~/src/git/guix"))
1471 (font-latex-fontify-sectioning 'color)))
1473 (use-package go-mode)
1475 (use-package po-mode
1477 (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit))))
1479 (use-feature tex-mode
1482 (lambda (p) (string-match "^---?" (car p)))
1483 tex--prettify-symbols-alist)
1484 :hook ((tex-mode . auto-fill-mode)
1485 (tex-mode . flyspell-mode)))
1490 (add-to-list 'custom-theme-load-path
1492 (convert-standard-filename "lisp") user-emacs-directory))
1493 (load-theme 'tangomod t)
1495 (use-package smart-mode-line
1497 :commands (sml/apply-theme)
1501 (smart-mode-line-enable))
1503 (use-package doom-modeline
1506 :hook (after-init . doom-modeline-init)
1508 (doom-modeline-buffer-file-name-style 'relative-to-project))
1510 (use-package doom-themes)
1512 (use-package solarized-theme
1515 (load-theme 'solarized-light t))
1520 (setq x-underline-at-descent-line t)
1521 (let ((line (face-attribute 'mode-line :underline)))
1522 (set-face-attribute 'mode-line nil :overline line)
1523 (set-face-attribute 'mode-line-inactive nil :overline line)
1524 (set-face-attribute 'mode-line-inactive nil :underline line)
1525 (set-face-attribute 'mode-line nil :box nil)
1526 (set-face-attribute 'mode-line-inactive nil :box nil)
1527 (set-face-attribute 'mode-line-inactive nil :background "#eeeeee")) ; d3d7cf
1528 (moody-replace-mode-line-buffer-identification)
1529 (moody-replace-vc-mode))
1531 (defvar b/org-mode-font-lock-keywords
1532 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
1533 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
1534 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
1535 (4 '(:foreground "#c5c8c6") t))) ; title
1536 "For use with the `doom-tomorrow-night' theme.")
1538 (defun b/lights-on ()
1539 "Enable my favourite light theme."
1541 (mapc #'disable-theme custom-enabled-themes)
1542 (load-theme 'tangomod t)
1543 ;; (sml/apply-theme 'automatic)
1544 (font-lock-remove-keywords
1545 'org-mode b/org-mode-font-lock-keywords)
1546 (exwm-systemtray--refresh))
1548 (defun b/lights-off ()
1551 (mapc #'disable-theme custom-enabled-themes)
1552 (load-theme 'doom-one t)
1553 ;; (sml/apply-theme 'automatic)
1554 (font-lock-add-keywords
1555 'org-mode b/org-mode-font-lock-keywords t)
1556 (exwm-systemtray--refresh))
1559 ("C-c t d" . b/lights-off)
1560 ("C-c t l" . b/lights-on))
1563 ;;; Emacs enhancements & auxiliary packages
1566 :config (setq Man-width 80))
1568 (use-package which-key
1571 (which-key-add-key-based-replacements
1572 ;; prefixes for global prefixes and minor modes
1576 "C-c 8 -" "typo/dashes"
1577 "C-c 8 <" "typo/left-brackets"
1578 "C-c 8 >" "typo/right-brackets"
1580 "C-x a" "abbrev/expand"
1581 "C-x r" "rectangle/register/bookmark"
1582 "C-x v" "version control"
1583 ;; prefixes for my personal bindings
1584 "C-c a" "applications"
1589 "C-c c" "compile-and-comments"
1595 "C-c m" "multiple-cursors"
1596 "C-c P" "projectile"
1597 "C-c P s" "projectile/search"
1598 "C-c P x" "projectile/execute"
1599 "C-c P 4" "projectile/other-window"
1605 ;; prefixes for major modes
1606 (which-key-add-major-mode-key-based-replacements 'message-mode
1607 "C-c f n" "footnote")
1608 (which-key-add-major-mode-key-based-replacements 'org-mode
1609 "C-c C-v" "org-babel")
1610 (which-key-add-major-mode-key-based-replacements 'web-mode
1611 "C-c C-a" "web/attributes"
1612 "C-c C-b" "web/blocks"
1614 "C-c C-e" "web/element"
1615 "C-c C-t" "web/tags")
1619 (which-key-add-column-padding 5)
1620 (which-key-max-description-length 32))
1622 (use-package crux ; results in Waiting for git... [2 times]
1624 :bind (("C-c d" . crux-duplicate-current-line-or-region)
1625 ("C-c D" . crux-duplicate-and-comment-current-line-or-region)
1626 ("C-c f C" . crux-copy-file-preserve-attributes)
1627 ("C-c f D" . crux-delete-file-and-buffer)
1628 ("C-c f R" . crux-rename-file-and-buffer)
1629 ("C-c j" . crux-top-join-line)
1630 ("C-S-j" . crux-top-join-line)))
1633 :bind (("C-a" . mwim-beginning-of-code-or-line)
1634 ("C-e" . mwim-end-of-code-or-line)
1635 ("<home>" . mwim-beginning-of-line-or-code)
1636 ("<end>" . mwim-end-of-line-or-code)))
1638 (use-package projectile
1640 :bind-keymap ("C-c P" . projectile-command-map)
1644 (defun b/projectile-mode-line-fun ()
1645 "Report project name and type in the modeline."
1646 (let ((project-name (projectile-project-name))
1647 (project-type (projectile-project-type)))
1649 projectile-mode-line-prefix
1651 (format ":%s" project-type)
1653 (setq projectile-mode-line-function 'b/projectile-mode-line-fun)
1655 (defun my-projectile-invalidate-cache (&rest _args)
1656 ;; ignore the args to `magit-checkout'
1657 (projectile-invalidate-cache nil))
1659 (eval-after-load 'magit-branch
1661 (advice-add 'magit-checkout
1662 :after #'my-projectile-invalidate-cache)
1663 (advice-add 'magit-branch-and-checkout
1664 :after #'my-projectile-invalidate-cache)))
1666 (projectile-completion-system 'ivy)
1667 (projectile-mode-line-prefix " proj"))
1669 (use-package helpful
1672 (("C-S-h c" . helpful-command)
1673 ("C-S-h f" . helpful-callable) ; helpful-function
1674 ("C-S-h v" . helpful-variable)
1675 ("C-S-h k" . helpful-key)
1676 ("C-S-h p" . helpful-at-point)))
1678 (use-package unkillable-scratch
1681 (unkillable-scratch 1)
1683 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1686 ;; | make pretty boxed quotes like this
1688 (use-package boxquote
1691 (:prefix-map b/boxquote-prefix-map
1693 ("b" . boxquote-buffer)
1694 ("B" . boxquote-insert-buffer)
1695 ("d" . boxquote-defun)
1696 ("F" . boxquote-insert-file)
1697 ("hf" . boxquote-describe-function)
1698 ("hk" . boxquote-describe-key)
1699 ("hv" . boxquote-describe-variable)
1700 ("hw" . boxquote-where-is)
1701 ("k" . boxquote-kill)
1702 ("p" . boxquote-paragraph)
1703 ("q" . boxquote-boxquote)
1704 ("r" . boxquote-region)
1705 ("s" . boxquote-shell-command)
1706 ("t" . boxquote-text)
1707 ("T" . boxquote-title)
1708 ("u" . boxquote-unbox)
1709 ("U" . boxquote-unbox-region)
1710 ("y" . boxquote-yank)
1711 ("M-q" . boxquote-fill-paragraph)
1712 ("M-w" . boxquote-kill-ring-save)))
1714 (use-package orgalist
1715 ;; http://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00007.html
1718 :hook (message-mode . orgalist-mode))
1720 ;; easily type pretty quotes & other typography, like ‘’“”-–—«»‹›
1724 (typo-global-mode 1)
1725 :hook (((text-mode erc-mode) . typo-mode)
1726 (tex-mode . (lambda ()(typo-mode -1)))))
1728 ;; highlight TODOs in buffers
1729 (use-package hl-todo
1732 (global-hl-todo-mode))
1734 (use-package shrink-path
1738 (defvar user-@-host (concat (user-login-name) "@" (system-name) " "))
1739 (defun +eshell/prompt ()
1740 (let ((base/dir (shrink-path-prompt default-directory)))
1741 (concat (propertize user-@-host 'face 'default)
1742 (propertize (car base/dir)
1743 'face 'font-lock-comment-face)
1744 (propertize (cdr base/dir)
1745 'face 'font-lock-constant-face)
1746 (propertize "> " 'face 'default))))
1747 (setq eshell-prompt-regexp (concat user-@-host ".*> ")
1748 eshell-prompt-function #'+eshell/prompt))
1750 (use-package eshell-up
1752 :commands eshell-up)
1754 (use-package multi-term
1757 :bind (("C-c a s m m" . multi-term)
1758 ("C-c a s m d" . multi-term-dedicated-toggle)
1759 ("C-c a s m p" . multi-term-prev)
1760 ("C-c a s m n" . multi-term-next)
1762 ("C-c C-j" . term-char-mode))
1764 (setq multi-term-program "screen"
1765 multi-term-program-switches (concat "-c"
1766 (getenv "XDG_CONFIG_HOME")
1768 ;; TODO: add separate bindings for connecting to existing
1769 ;; session vs. always creating a new one
1770 multi-term-dedicated-select-after-open-p t
1771 multi-term-dedicated-window-height 20
1772 multi-term-dedicated-max-window-height 30
1774 '(("C-c C-c" . term-interrupt-subjob)
1775 ("C-c C-e" . term-send-esc)
1776 ("C-c C-j" . term-line-mode)
1778 ;; ("C-y" . term-paste)
1779 ("C-y" . term-send-raw)
1780 ("M-f" . term-send-forward-word)
1781 ("M-b" . term-send-backward-word)
1782 ("M-p" . term-send-up)
1783 ("M-n" . term-send-down)
1784 ("M-j" . term-send-raw-meta)
1785 ("M-y" . term-send-raw-meta)
1786 ("M-/" . term-send-raw-meta)
1787 ("M-0" . term-send-raw-meta)
1788 ("M-1" . term-send-raw-meta)
1789 ("M-2" . term-send-raw-meta)
1790 ("M-3" . term-send-raw-meta)
1791 ("M-4" . term-send-raw-meta)
1792 ("M-5" . term-send-raw-meta)
1793 ("M-6" . term-send-raw-meta)
1794 ("M-7" . term-send-raw-meta)
1795 ("M-8" . term-send-raw-meta)
1796 ("M-9" . term-send-raw-meta)
1797 ("<C-backspace>" . term-send-backward-kill-word)
1798 ("<M-DEL>" . term-send-backward-kill-word)
1799 ("M-d" . term-send-delete-word)
1800 ("M-," . term-send-raw)
1801 ("M-." . comint-dynamic-complete))
1802 term-unbind-key-alist
1803 '("C-z" "C-x" "C-c" "C-h"
1807 (use-package page-break-lines
1810 (page-break-lines-max-width fill-column)
1812 (global-page-break-lines-mode))
1814 (use-package expand-region
1815 :bind ("C-=" . er/expand-region))
1817 (use-package multiple-cursors
1819 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
1820 (:prefix-map b/mc-prefix-map
1822 ("c" . mc/edit-lines)
1823 ("n" . mc/mark-next-like-this)
1824 ("p" . mc/mark-previous-like-this)
1825 ("a" . mc/mark-all-like-this))))
1831 (use-package yasnippet
1834 (defconst yas-verbosity-cur yas-verbosity)
1835 (setq yas-verbosity 2)
1836 (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
1838 (setq yas-verbosity yas-verbosity-cur)
1840 (defun b/yas--maybe-expand-key-filter (cmd)
1841 (when (and (yas--maybe-expand-key-filter cmd)
1842 (not (bound-and-true-p git-commit-mode)))
1844 (defconst b/yas-maybe-expand
1845 '(menu-item "" yas-expand :filter b/yas--maybe-expand-key-filter))
1846 (define-key yas-minor-mode-map
1847 (kbd "SPC") b/yas-maybe-expand)
1851 (use-package debbugs
1854 :repo "emacs-straight/debbugs"
1855 :files (:defaults "Debbugs.wsdl")))
1857 (use-package org-ref
1859 (b/setq-every '("~/usr/org/references.bib")
1860 reftex-default-bibliography
1861 org-ref-default-bibliography)
1863 org-ref-bibliography-notes "~/usr/org/notes.org"
1864 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1868 :init (setq alert-default-style 'notifications))
1870 ;; (use-package fill-column-indicator)
1872 (use-package emojify
1873 :hook (erc-mode . emojify-mode))
1877 (("C-c w <right>" . split-window-right)
1878 ("C-c w <down>" . split-window-below)
1879 ("C-c w s l" . split-window-right)
1880 ("C-c w s j" . split-window-below)
1881 ("C-c w q" . quit-window))
1883 (split-width-threshold 150))
1885 (use-feature windmove
1888 (("C-c w h" . windmove-left)
1889 ("C-c w j" . windmove-down)
1890 ("C-c w k" . windmove-up)
1891 ("C-c w l" . windmove-right)
1892 ("C-c w H" . windmove-swap-states-left)
1893 ("C-c w J" . windmove-swap-states-down)
1894 ("C-c w K" . windmove-swap-states-up)
1895 ("C-c w L" . windmove-swap-states-right)))
1899 :bind ("C-c a p" . pass)
1900 :hook (pass-mode . View-exit))
1902 (use-package pdf-tools
1904 :bind (:map pdf-view-mode-map
1905 ("<C-XF86Back>" . pdf-history-backward)
1906 ("<mouse-8>" . pdf-history-backward)
1907 ("<drag-mouse-8>" . pdf-history-backward)
1908 ("<C-XF86Forward>" . pdf-history-forward)
1909 ("<mouse-9>" . pdf-history-forward)
1910 ("<drag-mouse-9>" . pdf-history-forward)
1911 ("M-RET" . image-previous-line))
1912 :config (pdf-tools-install nil t)
1913 :custom (pdf-view-resize-factor 1.05))
1915 (use-package biblio)
1918 :hook (latex-mode . reftex-mode))
1920 (use-feature reftex-cite
1922 :disabled ; enable to disable
1923 ; reftex-cite's default choice
1926 (defun reftex-get-bibkey-default ()
1927 "If the cursor is in a citation macro, return the word before the macro."
1928 (let* ((macro (reftex-what-macro 1)))
1930 (when (and macro (string-match "cite" (car macro)))
1931 (goto-char (cdr macro)))
1932 (reftex-this-word)))))
1934 (use-package minions
1936 :config (minions-mode))
1941 (dmenu-history-size 0)
1942 (dmenu-prompt-string "run: ")
1943 (dmenu-save-file (b/var "dmenu-items")))
1946 ;; TODO: fix build by properly building the eosd-pixbuf.c module
1947 ;; e.g. see https://github.com/raxod502/straight.el/issues/386
1949 :straight (:host github :repo "clarete/eosd")
1956 ;;; Email (with Gnus)
1958 (defvar b/maildir (expand-file-name "~/mail/"))
1959 (with-eval-after-load 'recentf
1960 (add-to-list 'recentf-exclude b/maildir))
1963 b/gnus-init-file (b/etc "gnus")
1964 mail-user-agent 'gnus-user-agent
1965 read-mail-command 'gnus)
1968 :bind (("s-m" . gnus)
1969 ("s-M" . gnus-unplugged)
1971 ("C-c a M" . gnus-unplugged))
1974 gnus-select-method '(nnnil "")
1975 gnus-secondary-select-methods
1976 '((nnimap "shemshak"
1977 (nnimap-stream plain)
1978 (nnimap-address "127.0.0.1")
1979 (nnimap-server-port 143)
1980 (nnimap-authenticator plain)
1981 (nnimap-user "amin@shemshak.local"))
1983 (nnimap-stream plain)
1984 (nnimap-address "127.0.0.1")
1985 (nnimap-server-port 143)
1986 (nnimap-authenticator plain)
1987 (nnimap-user "bandali@gnu.local")
1988 (nnimap-inbox "INBOX")
1989 (nnimap-split-methods 'nnimap-split-fancy)
1990 (nnimap-split-fancy (|
1991 ;; (: gnus-registry-split-fancy-with-parent)
1992 ;; (: gnus-group-split-fancy "INBOX" t "INBOX")
1994 (list ".*<\\(.*\\)\\.\\(non\\)?gnu\\.org>.*" "l.\\1")
1995 ;; *@lists.sr.ht, omitting one dot if present
1996 ;; add more \\.?\\([^.@]*\\) if needed
1997 (list ".*<~\\(.*\\)/\\([^.@]*\\)\\.?\\([^.@]*\\)@lists.sr.ht>.*" "l.~\\1.\\2\\3")
1999 (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters")
2001 (list ".*atreus.freelists.org" "l.atreus")
2002 (list ".*deepspec.lists.cs.princeton.edu" "l.deepspec")
2003 ;; (list ".*haskell-art.we.lurk.org" "l.haskell.art") ;d
2004 (list ".*haskell-cafe.haskell.org" "l.haskell-cafe")
2005 ;; (list ".*notmuch.notmuchmail.org" "l.notmuch") ;u
2006 ;; (list ".*dev.lists.parabola.nu" "l.parabola-dev") ;u
2007 ;; ----------------------------------
2008 ;; legend: (u)nsubscribed | (d)ead
2009 ;; ----------------------------------
2010 ;; otherwise, leave mail in INBOX
2013 (nnimap-stream plain)
2014 (nnimap-address "127.0.0.1")
2015 (nnimap-server-port 143)
2016 (nnimap-authenticator plain)
2017 (nnimap-user "abandali@uw.local")
2018 (nnimap-inbox "INBOX")
2019 (nnimap-split-methods 'nnimap-split-fancy)
2020 (nnimap-split-fancy (|
2021 ;; (: gnus-registry-split-fancy-with-parent)
2023 ("subject" "SE\\s-?212" "course.se212-f19")
2024 (from "SE\\s-?212" "course.se212-f19")
2028 (nnimap-stream plain)
2029 (nnimap-address "127.0.0.1")
2030 (nnimap-server-port 143)
2031 (nnimap-authenticator plain)
2032 (nnimap-user "abandali@csc.uw.local")))
2033 gnus-message-archive-group "nnimap+shemshak:Sent"
2036 (to-address . "atreus@freelists.org")
2037 (to-list . "atreus@freelists.org"))
2039 (to-address . "deepspec@lists.cs.princeton.edu")
2040 (to-list . "deepspec@lists.cs.princeton.edu")
2041 (list-identifier . "\\[deepspec\\]"))
2043 (to-address . "emacs-devel@gnu.org")
2044 (to-list . "emacs-devel@gnu.org"))
2045 ("l\\.help-gnu-emacs"
2046 (to-address . "help-gnu-emacs@gnu.org")
2047 (to-list . "help-gnu-emacs@gnu.org"))
2048 ("l\\.info-gnu-emacs"
2049 (to-address . "info-gnu-emacs@gnu.org")
2050 (to-list . "info-gnu-emacs@gnu.org"))
2051 ("l\\.emacs-orgmode"
2052 (to-address . "emacs-orgmode@gnu.org")
2053 (to-list . "emacs-orgmode@gnu.org")
2054 (list-identifier . "\\[O\\]"))
2055 ("l\\.emacs-tangents"
2056 (to-address . "emacs-tangents@gnu.org")
2057 (to-list . "emacs-tangents@gnu.org"))
2058 ("l\\.emacsconf-discuss"
2059 (to-address . "emacsconf-discuss@gnu.org")
2060 (to-list . "emacsconf-discuss@gnu.org"))
2061 ("l\\.emacsconf-register"
2062 (to-address . "emacsconf-register@gnu.org")
2063 (to-list . "emacsconf-register@gnu.org"))
2064 ("l\\.emacsconf-submit"
2065 (to-address . "emacsconf-submit@gnu.org")
2066 (to-list . "emacsconf-submit@gnu.org"))
2067 ("l\\.fencepost-users"
2068 (to-address . "fencepost-users@gnu.org")
2069 (to-list . "fencepost-users@gnu.org")
2070 (list-identifier . "\\[Fencepost-users\\]"))
2071 ("l\\.gnewsense-art"
2072 (to-address . "gnewsense-art@nongnu.org")
2073 (to-list . "gnewsense-art@nongnu.org")
2074 (list-identifier . "\\[gNewSense-art\\]"))
2075 ("l\\.gnewsense-dev"
2076 (to-address . "gnewsense-dev@nongnu.org")
2077 (to-list . "gnewsense-dev@nongnu.org")
2078 (list-identifier . "\\[Gnewsense-dev\\]"))
2079 ("l\\.gnewsense-users"
2080 (to-address . "gnewsense-users@nongnu.org")
2081 (to-list . "gnewsense-users@nongnu.org")
2082 (list-identifier . "\\[gNewSense-users\\]"))
2083 ("l\\.gnunet-developers"
2084 (to-address . "gnunet-developers@gnu.org")
2085 (to-list . "gnunet-developers@gnu.org")
2086 (list-identifier . "\\[GNUnet-developers\\]"))
2088 (to-address . "help-gnunet@gnu.org")
2089 (to-list . "help-gnunet@gnu.org")
2090 (list-identifier . "\\[Help-gnunet\\]"))
2092 (to-address . "bug-gnuzilla@gnu.org")
2093 (to-list . "bug-gnuzilla@gnu.org")
2094 (list-identifier . "\\[Bug-gnuzilla\\]"))
2096 (to-address . "gnuzilla-dev@gnu.org")
2097 (to-list . "gnuzilla-dev@gnu.org")
2098 (list-identifier . "\\[Gnuzilla-dev\\]"))
2100 (to-address . "guile-devel@gnu.org")
2101 (to-list . "guile-devel@gnu.org"))
2103 (to-address . "guile-user@gnu.org")
2104 (to-list . "guile-user@gnu.org"))
2106 (to-address . "guix-devel@gnu.org")
2107 (to-list . "guix-devel@gnu.org"))
2109 (to-address . "help-guix@gnu.org")
2110 (to-list . "help-guix@gnu.org"))
2112 (to-address . "info-guix@gnu.org")
2113 (to-list . "info-guix@gnu.org"))
2114 ("l\\.savannah-hackers-public"
2115 (to-address . "savannah-hackers-public@gnu.org")
2116 (to-list . "savannah-hackers-public@gnu.org"))
2117 ("l\\.savannah-users"
2118 (to-address . "savannah-users@gnu.org")
2119 (to-list . "savannah-users@gnu.org"))
2121 (to-address . "www-commits@gnu.org")
2122 (to-list . "www-commits@gnu.org"))
2124 (to-address . "www-discuss@gnu.org")
2125 (to-list . "www-discuss@gnu.org"))
2127 (to-address . "haskell-art@we.lurk.org")
2128 (to-list . "haskell-art@we.lurk.org")
2129 (list-identifier . "\\[haskell-art\\]"))
2131 (to-address . "haskell-cafe@haskell.org")
2132 (to-list . "haskell-cafe@haskell.org")
2133 (list-identifier . "\\[Haskell-cafe\\]"))
2135 (to-address . "notmuch@notmuchmail.org")
2136 (to-list . "notmuch@notmuchmail.org"))
2138 (to-address . "dev@lists.parabola.nu")
2139 (to-list . "dev@lists.parabola.nu")
2140 (list-identifier . "\\[Dev\\]"))
2141 ("l\\.~bandali\\.public-inbox"
2142 (to-address . "~bandali/public-inbox@lists.sr.ht")
2143 (to-list . "~bandali/public-inbox@lists.sr.ht"))
2144 ("l\\.~sircmpwn\\.free-writers-club"
2145 (to-address . "~sircmpwn/free-writers-club@lists.sr.ht")
2146 (to-list . "~sircmpwn/free-writers-club@lists.sr.ht"))
2147 ("l\\.~sircmpwn\\.srht-admins"
2148 (to-address . "~sircmpwn/sr.ht-admins@lists.sr.ht")
2149 (to-list . "~sircmpwn/sr.ht-admins@lists.sr.ht"))
2150 ("l\\.~sircmpwn\\.srht-announce"
2151 (to-address . "~sircmpwn/sr.ht-announce@lists.sr.ht")
2152 (to-list . "~sircmpwn/sr.ht-announce@lists.sr.ht"))
2153 ("l\\.~sircmpwn\\.srht-dev"
2154 (to-address . "~sircmpwn/sr.ht-dev@lists.sr.ht")
2155 (to-list . "~sircmpwn/sr.ht-dev@lists.sr.ht"))
2156 ("l\\.~sircmpwn\\.srht-discuss"
2157 (to-address . "~sircmpwn/sr.ht-discuss@lists.sr.ht")
2158 (to-list . "~sircmpwn/sr.ht-discuss@lists.sr.ht"))
2160 (to-address . "webmasters@gnu.org")
2161 (to-list . "webmasters@gnu.org"))
2168 gnus-large-newsgroup 50
2169 gnus-home-directory (b/var "gnus/")
2170 gnus-directory (concat gnus-home-directory "news/")
2171 message-directory (concat gnus-home-directory "mail/")
2172 nndraft-directory (concat gnus-home-directory "drafts/")
2173 gnus-save-newsrc-file nil
2174 gnus-read-newsrc-file nil
2175 gnus-interactive-exit nil
2176 gnus-gcc-mark-as-read t)
2178 (when (version< emacs-version "27")
2180 'nnmail-split-abbrev-alist
2181 '(list . "list-id\\|list-post\\|x-mailing-list\\|x-beenthere\\|x-loop")
2184 ;; (gnus-registry-initialize)
2186 (with-eval-after-load 'recentf
2187 (add-to-list 'recentf-exclude gnus-home-directory)))
2189 (use-feature gnus-art
2192 gnus-buttonized-mime-types '("multipart/\\(signed\\|encrypted\\)")
2193 gnus-visible-headers
2194 (concat gnus-visible-headers "\\|^List-Id:\\|^X-RT-Originator:\\|^User-Agent:")
2195 gnus-sorted-header-list
2196 '("^From:" "^Subject:" "^Summary:" "^Keywords:"
2197 "^Followup-To:" "^To:" "^Cc:" "X-RT-Originator"
2198 "^Newsgroups:" "List-Id:" "^Organization:"
2199 "^User-Agent:" "^Date:")
2200 ;; local-lapsed article dates
2201 ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11
2202 gnus-article-date-headers '(user-defined)
2203 gnus-article-time-format
2205 (let* ((date (format-time-string "%a, %d %b %Y %T %z" time))
2206 (local (article-make-date-line date 'local))
2207 (combined-lapsed (article-make-date-line date
2210 (string-match " (.+" combined-lapsed)
2211 (match-string 0 combined-lapsed))))
2212 (concat local lapsed))))
2214 :map gnus-article-mode-map
2215 ("M-L" . org-store-link)))
2217 (use-feature gnus-sum
2218 :bind (:map gnus-summary-mode-map
2219 :prefix-map b/gnus-summary-prefix-map
2221 ("r" . gnus-summary-reply)
2222 ("w" . gnus-summary-wide-reply)
2223 ("v" . gnus-summary-show-raw-article))
2226 :map gnus-summary-mode-map
2227 ("M-L" . org-store-link))
2228 :hook (gnus-summary-mode . b/no-mouse-autoselect-window)
2230 (gnus-thread-sort-functions '(gnus-thread-sort-by-number
2231 gnus-thread-sort-by-subject
2232 gnus-thread-sort-by-date)))
2234 (use-feature gnus-msg
2236 (defvar b/signature "Amin Bandali
2237 Free Software Activist | GNU Webmaster & Volunteer
2238 GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103
2239 https://shemshak.org/~amin")
2240 (defvar b/gnu-signature "Amin Bandali
2241 Free Software Activist | GNU Webmaster & Volunteer
2242 GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103
2243 https://bandali.eu.org")
2244 (defvar b/uw-signature "Amin Bandali, MMath Student
2245 Cheriton School of Computer Science
2246 University of Waterloo
2247 https://bandali.eu.org")
2248 (defvar b/csc-signature "Amin Bandali
2250 Computer Science Club, University of Waterloo
2251 https://csclub.uwaterloo.ca/~abandali")
2252 (setq gnus-posting-styles
2254 (address "amin@shemshak.org")
2256 (signature b/signature)
2257 (eval (setq b/message-cite-say-hi t)))
2259 (address "bandali@gnu.org")
2260 (signature b/gnu-signature)
2261 (eval (set (make-local-variable 'message-user-fqdn) "fencepost.gnu.org")))
2262 ((header "subject" "ThankCRM")
2263 (to "webmasters-comment@gnu.org")
2265 (eval (setq b/message-cite-say-hi nil)))
2267 (address "abandali@uwaterloo.ca")
2268 (signature b/uw-signature))
2269 ("nnimap\\+uw:INBOX"
2270 (gcc "\"nnimap+uw:Sent Items\""))
2272 (address "abandali@csclub.uwaterloo.ca")
2273 (signature b/csc-signature)
2274 (gcc "nnimap+csc:Sent")))))
2276 (use-feature gnus-topic
2277 :hook (gnus-group-mode . gnus-topic-mode)
2278 :config (setq gnus-topic-line-format "%i[ %A: %(%{%n%}%) ]%v\n"))
2280 (use-feature gnus-agent
2282 (setq gnus-agent-synchronize-flags 'ask)
2283 :hook (gnus-group-mode . gnus-agent-mode))
2285 (use-feature gnus-group
2287 (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)"))
2290 ;; problematic with ebdb's popup, *EBDB-Gnus*
2291 (use-feature gnus-win
2293 (setq gnus-use-full-window nil)))
2295 (use-feature gnus-dired
2296 :commands gnus-dired-mode
2298 (add-hook 'dired-mode-hook 'gnus-dired-mode))
2300 (use-feature mm-decode
2302 (setq mm-discouraged-alternatives '("text/html" "text/richtext")
2303 mm-decrypt-option 'known
2304 mm-verify-option 'known))
2308 (mm-uu-diff-groups-regexp
2309 "\\(gmane\\|gnu\\|l\\)\\..*\\(diff\\|commit\\|cvs\\|bug\\|dev\\)"))
2311 (use-feature sendmail
2313 (setq sendmail-program (executable-find "msmtp")
2314 ;; message-sendmail-extra-arguments '("-v" "-d")
2315 mail-specify-envelope-from t
2316 mail-envelope-from 'header))
2318 (use-feature message
2320 ;; redefine for a simplified In-Reply-To header
2321 ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67)
2322 (defun message-make-in-reply-to ()
2323 "Return the In-Reply-To header for this message."
2324 (when message-reply-headers
2325 (let ((from (mail-header-from message-reply-headers))
2326 (msg-id (mail-header-id message-reply-headers)))
2330 (defconst b/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:")
2331 (defconst message-cite-style-bandali
2332 '((message-cite-function 'message-cite-original)
2333 (message-citation-line-function 'message-insert-formatted-citation-line)
2334 (message-cite-reply-position 'traditional)
2335 (message-yank-prefix "> ")
2336 (message-yank-cited-prefix ">")
2337 (message-yank-empty-prefix ">")
2338 (message-citation-line-format
2339 (if b/message-cite-say-hi
2340 (concat "Hi %F,\n\n" b/message-cite-style-format)
2341 b/message-cite-style-format)))
2342 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
2343 (setq ;; message-cite-style 'message-cite-style-bandali
2344 message-kill-buffer-on-exit t
2345 message-send-mail-function 'message-send-mail-with-sendmail
2346 message-sendmail-envelope-from 'header
2347 message-subscribed-address-functions
2348 '(gnus-find-subscribed-addresses)
2349 message-dont-reply-to-names
2350 "\\(\\(\\(amin\\|mab\\)@shemshak\\.org\\)\\|\\(amin@bndl\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|\\(a\\(min\\.\\)?bandali@uwaterloo\\.ca\\)\\|\\(abandali@csclub\\.uwaterloo\\.ca\\)\\)")
2351 (require 'company-ebdb)
2352 :hook (;; (message-setup . mml-secure-message-sign-pgpmime)
2353 (message-mode . flyspell-mode)
2354 (message-mode . (lambda ()
2355 ;; (setq fill-column 65
2356 ;; message-fill-column 65)
2357 (make-local-variable 'company-idle-delay)
2358 (setq company-idle-delay 0.2))))
2360 ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
2361 ;; (message-header-to ((t (:foreground "#111" :weight normal))))
2362 ;; (message-header-cc ((t (:foreground "#333" :weight normal))))
2364 (message-elide-ellipsis "[...]\n"))
2368 (use-feature mml-sec
2370 (mml-secure-openpgp-encrypt-to-self t)
2371 (mml-secure-openpgp-sign-with-sender t))
2373 (use-feature footnote
2376 ;; (setq footnote-start-tag ""
2377 ;; footnote-end-tag ""
2378 ;; footnote-style 'unicode)
2380 (:map message-mode-map
2381 :prefix-map b/footnote-prefix-map
2383 ("a" . footnote-add-footnote)
2384 ("b" . footnote-back-to-message)
2385 ("c" . footnote-cycle-style)
2386 ("d" . footnote-delete-footnote)
2387 ("g" . footnote-goto-footnote)
2388 ("r" . footnote-renumber-footnotes)
2389 ("s" . footnote-set-style)))
2394 :bind (:map gnus-group-mode-map ("e" . ebdb))
2396 (setq ebdb-sources (b/var "ebdb"))
2397 (with-eval-after-load 'swiper
2398 (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t)))
2400 (use-feature ebdb-com
2403 ;; (use-package ebdb-complete
2406 ;; (ebdb-complete-enable))
2408 (use-package company-ebdb
2410 (defun company-ebdb--post-complete (_) nil))
2412 (use-feature ebdb-gnus
2416 (ebdb-gnus-window-size 0.3))
2418 (use-feature ebdb-mua
2421 :custom (ebdb-mua-pop-up nil))
2423 ;; (use-package ebdb-message
2426 ;; (use-package ebdb-vcard
2429 (use-package message-x)
2432 (use-package message-x
2434 (message-x-completion-alist
2436 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address)
2439 (quote message-newgroups-header-regexp))
2440 message-newgroups-header-regexp message-newsgroups-header-regexp)
2441 . message-expand-group))))))
2444 (use-package gnus-harvest
2445 :commands gnus-harvest-install
2448 (if (featurep 'message-x)
2449 (gnus-harvest-install 'message-x)
2450 (gnus-harvest-install))))
2452 (use-feature gnus-article-treat-patch
2457 ;; note: be sure to customize faces with `:foreground "white"' when
2458 ;; using a theme with a white/light background :)
2459 (setq ft/gnus-article-patch-conditions
2460 '("^@@ -[0-9]+,[0-9]+ \\+[0-9]+,[0-9]+ @@")))
2463 ;;; IRC (with ERC and ZNC)
2466 :bind (("C-c b e" . erc-switch-to-buffer)
2468 ("M-a" . erc-track-switch-buffer))
2470 (erc-join-buffer 'bury)
2471 (erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
2472 (erc-nick "bandali")
2474 (erc-rename-buffers t)
2475 (erc-server-reconnect-attempts 5)
2476 (erc-server-reconnect-timeout 3)
2478 (defun erc-cmd-OPME ()
2479 "Request chanserv to op me."
2480 (erc-message "PRIVMSG"
2481 (format "chanserv op %s %s"
2482 (erc-default-target)
2483 (erc-current-nick)) nil))
2484 (defun erc-cmd-DEOPME ()
2485 "Deop myself from current channel."
2486 (erc-cmd-DEOP (format "%s" (erc-current-nick))))
2487 (add-to-list 'erc-modules 'keep-place)
2488 (add-to-list 'erc-modules 'notifications)
2489 (add-to-list 'erc-modules 'spelling)
2490 (add-to-list 'erc-modules 'scrolltoplace)
2491 (erc-update-modules))
2493 (use-feature erc-fill
2496 (erc-fill-column 77)
2497 (erc-fill-function 'erc-fill-static)
2498 (erc-fill-static-center 18))
2500 (use-feature erc-pcomplete
2503 (erc-pcomplete-nick-postfix ","))
2505 (use-feature erc-track
2507 :bind (("C-c a e t d" . erc-track-disable)
2508 ("C-c a e t e" . erc-track-enable))
2510 (erc-track-enable-keybindings nil)
2511 (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT"
2512 "324" "329" "332" "333" "353" "477"))
2513 (erc-track-position-in-mode-line t)
2514 (erc-track-priority-faces-only 'all)
2515 (erc-track-shorten-function nil))
2517 (use-package erc-hl-nicks
2520 (use-package erc-scrolltoplace
2524 :straight (:host nil :repo "https://git.shemshak.org/amin/znc.el")
2525 :bind (("C-c a e e" . znc-erc)
2526 ("C-c a e a" . znc-all))
2528 (let ((pwd (let ((auth (auth-source-search :host "znca")))
2530 ((null auth) (error "Couldn't find znca's authinfo"))
2531 (t (funcall (plist-get (car auth) :secret)))))))
2533 `(("znc.shemshak.org" 1337 t
2534 ((freenode "amin/freenode" ,pwd)))
2535 ("znc.shemshak.org" 1337 t
2536 ((moznet "amin/moznet" ,pwd)))
2537 ("znc.shemshak.org" 1337 t
2538 ((oftc "amin/oftc" ,pwd)))))))
2541 ;;; Post initialization
2543 (message "Loading %s...done (%.3fs)" user-init-file
2544 (float-time (time-subtract (current-time)
2545 b/before-user-init-time)))
2547 ;;; init.el ends here