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/no-mouse-autoselect-window
()
270 "Conveniently disable `focus-follows-mouse'.
271 For disabling the behaviour for certain buffers and/or modes."
272 (make-local-variable 'mouse-autoselect-window
)
273 (setq mouse-autoselect-window nil
))
278 ;;;; C-level customizations
282 enable-recursive-minibuffers t
283 resize-mini-windows t
284 ;; more useful frame titles
285 frame-title-format
'("" invocation-name
" - "
287 (if (buffer-file-name)
288 (abbreviate-file-name (buffer-file-name))
290 ;; i don't feel like jumping out of my chair every now and again; so
291 ;; don't BEEP! at me, emacs
292 ring-bell-function
'ignore
295 ;; scroll-conservatively 10000
297 scroll-conservatively
10
298 scroll-preserve-screen-position
1
299 ;; focus follows mouse
300 mouse-autoselect-window t
)
303 ;; always use space for indentation
311 (dolist (ft (fontset-list))
315 (font-spec :name
"Source Code Pro" :size
14))
319 (font-spec :name
"DejaVu Sans Mono")
326 ;; :name "Symbola monospacified for DejaVu Sans Mono")
332 ;; (font-spec :name "DejaVu Sans Mono")
338 (font-spec :name
"DejaVu Sans Mono" :size
14)
342 ;;;; Elisp-level customizations
348 ;; don't need to see the startup echo area message
349 (advice-add #'display-startup-echo-area-message
:override
#'ignore
)
351 ;; i want *scratch* as my startup buffer
352 (initial-buffer-choice t
)
353 ;; i don't need the default hint
354 (initial-scratch-message nil
)
355 ;; use customizable text-mode as major mode for *scratch*
356 ;; (initial-major-mode 'text-mode)
357 ;; inhibit buffer list when more than 2 files are loaded
358 (inhibit-startup-buffer-menu t
)
359 ;; don't need to see the startup screen or echo area message
360 (inhibit-startup-screen t
)
361 (inhibit-startup-echo-area-message user-login-name
))
367 ;; backups (C-h v make-backup-files RET)
368 (backup-by-copying t
)
370 (delete-old-versions t
)
373 (auto-save-file-name-transforms
374 `((".*" ,(b/var
"auto-save/") t
)))
376 ;; insert newline at the end of files
377 (require-final-newline t
)
379 ;; open read-only file buffers in view-mode
380 ;; (enables niceties like `q' for quit)
383 ;; disable disabled commands
384 (setq disabled-command-function nil
)
386 ;; lazy-person-friendly yes/no prompts
387 (defalias 'yes-or-no-p
#'y-or-n-p
)
389 ;; enable automatic reloading of changed buffers and files
390 (use-feature autorevert
393 (global-auto-revert-mode 1)
395 (auto-revert-verbose nil
)
396 (global-auto-revert-non-file-buffers nil
))
398 ;; time and battery in mode-line
405 (display-time-default-load-average nil
)
406 (display-time-format "%a %b %-e, %-l:%M%P"))
412 (display-battery-mode)
414 (battery-mode-line-format " %p%% %t"))
420 ;; (fringe-mode '(3 . 1))
426 ;; enable winner-mode (C-h f winner-mode RET)
431 ;; don't display *compilation* buffer on success. based on
432 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
433 ;; instead of the now obsolete `flet'.
434 (defun b/compilation-finish-function
(buffer outstr
)
435 (unless (string-match "finished" outstr
)
436 (switch-to-buffer-other-window buffer
))
439 (setq compilation-finish-functions
#'b
/compilation-finish-function
)
443 (defadvice compilation-start
444 (around inhibit-display
445 (command &optional mode name-function highlight-regexp
))
446 (if (not (string-match "^\\(find\\|grep\\)" command
))
447 (cl-letf (((symbol-function 'display-buffer
) #'ignore
))
448 (save-window-excursion ad-do-it
))
450 (ad-activate 'compilation-start
))
454 ;; allow scrolling in Isearch
455 (isearch-allow-scroll t
)
456 ;; search for non-ASCII characters: i’d like non-ASCII characters such
457 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
458 ;; counterpart. shoutout to
459 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
460 (search-default-mode #'char-fold-to-regexp
))
462 ;; uncomment to extend the above behaviour to query-replace
466 (replace-char-fold t
)))
469 :bind
("C-x v C-=" . vc-ediff
))
472 :config
(add-hook 'ediff-after-quit-hook-internal
'winner-undo
)
473 :custom
((ediff-window-setup-function 'ediff-setup-windows-plain
)
474 (ediff-split-window-function 'split-window-horizontally
)))
476 (use-feature face-remap
478 ;; gentler font resizing
479 (text-scale-mode-step 1.05))
484 (setq mouse-wheel-scroll-amount
'(1 ((shift) .
1)) ; one line at a time
485 mouse-wheel-progressive-speed nil
; don't accelerate scrolling
486 mouse-wheel-follow-mouse t
)) ; scroll window under mouse
488 (use-feature pixel-scroll
490 :config
(pixel-scroll-mode 1))
492 (use-feature epg-config
494 ((epg-gpg-program (executable-find "gpg"))))
496 (use-feature auth-source
498 (auth-sources '("~/.authinfo.gpg"))
499 (authinfo-hidden (regexp-opt '("password" "client-secret" "token"))))
507 ("C-c e b" . eval-buffer
)
508 ("C-c e e" . eval-last-sexp
)
509 ("C-c e r" . eval-region
)
511 ("C-c e i" . emacs-init-time
)
512 ("C-c e u" . emacs-uptime
)
513 ("C-c e v" . emacs-version
)
515 ("C-c F m" . make-frame-command
)
516 ("C-c F d" . delete-frame
)
517 ("C-c F D" . server-edit
)
519 ("C-S-h C" . describe-char
)
520 ("C-S-h F" . describe-face
)
522 ("C-x k" . kill-this-buffer
)
523 ("C-x K" . kill-buffer
)
524 ("C-x s" . save-buffer
)
525 ("C-x S" . save-some-buffers
)
527 :map emacs-lisp-mode-map
528 ("<C-return>" . b
/add-elisp-section
))
530 (when (display-graphic-p)
531 (unbind-key "C-z" global-map
))
534 ;; for back and forward mouse keys
535 ("<XF86Back>" . previous-buffer
)
536 ("<mouse-8>" . previous-buffer
)
537 ("<drag-mouse-8>" . previous-buffer
)
538 ("<XF86Forward>" . next-buffer
)
539 ("<mouse-9>" . next-buffer
)
540 ("<drag-mouse-9>" . next-buffer
)
541 ("<drag-mouse-2>" . kill-this-buffer
)
542 ("<drag-mouse-3>" . ivy-switch-buffer
))
545 :prefix-map b
/straight-prefix-map
547 ("u" . straight-use-package
)
548 ("f" . straight-freeze-versions
)
549 ("t" . straight-thaw-versions
)
550 ("P" . straight-prune-build
)
551 ("g" . straight-get-recipe
)
552 ("r" . b
/reload-init
)
553 ;; M-x ^straight-.*-all$
554 ("a c" . straight-check-all
)
555 ("a f" . straight-fetch-all
)
556 ("a m" . straight-merge-all
)
557 ("a n" . straight-normalize-all
)
558 ("a F" . straight-pull-all
)
559 ("a P" . straight-push-all
)
560 ("a r" . straight-rebuild-all
)
561 ;; M-x ^straight-.*-package$
562 ("p c" . straight-check-package
)
563 ("p f" . straight-fetch-package
)
564 ("p m" . straight-merge-package
)
565 ("p n" . straight-normalize-package
)
566 ("p F" . straight-pull-package
)
567 ("p P" . straight-push-package
)
568 ("p r" . straight-rebuild-package
))
571 ;;; Essential packages
577 ;; make class name the buffer name, truncating beyond 60 characters
578 (defun b/exwm-rename-buffer
()
580 (exwm-workspace-rename-buffer
581 (concat exwm-class-name
":"
582 (if (<= (length exwm-title
) 60) exwm-title
583 (concat (substring exwm-title
0 59) "...")))))
586 :hook
((exwm-update-class . b
/exwm-rename-buffer
)
587 (exwm-update-title . b
/exwm-rename-buffer
)))
589 (use-feature exwm-config
592 :hook
(exwm-init . exwm-config--fix
/ido-buffer-window-other-frame
))
594 (use-feature exwm-input
598 (defun b/exwm-ws-prev-index
()
599 "Return the index for the previous EXWM workspace, wrapping
601 (if (= exwm-workspace-current-index
0)
602 (1- exwm-workspace-number
)
603 (1- exwm-workspace-current-index
)))
605 (defun b/exwm-ws-next-index
()
606 "Return the index for the next EXWM workspace, wrapping
608 (if (= exwm-workspace-current-index
609 (1- exwm-workspace-number
))
611 (1+ exwm-workspace-current-index
)))
613 ;; shorten 'C-c C-q' to 'C-q'
614 (define-key exwm-mode-map
[?\C-q
] #'exwm-input-send-next-key
)
616 (setq exwm-workspace-number
4
617 exwm-input-global-keys
618 `(([?\s-R
] . exwm-reset
)
619 ([?\s-
\\] . exwm-workspace-switch
)
621 ([?\S-\s-\s
] .
(lambda (command)
623 (list (read-shell-command "➜ ")))
624 (start-process-shell-command
625 command nil command
)))
626 ([s-return
] .
(lambda ()
628 (start-process "" nil
"urxvt")))
629 ([?\C-\s-\s
] . counsel-linux-app
)
630 ([?\M-\s-\s
] .
(lambda ()
632 (start-process-shell-command
633 "rofi-pass" nil
"rofi-pass")))
634 ([?\s-h
] . windmove-left
)
635 ([?\s-j
] . windmove-down
)
636 ([?\s-k
] . windmove-up
)
637 ([?\s-l
] . windmove-right
)
638 ([?\s-H
] . windmove-swap-states-left
)
639 ([?\s-J
] . windmove-swap-states-down
)
640 ([?\s-K
] . windmove-swap-states-up
)
641 ([?\s-L
] . windmove-swap-states-right
)
642 ([?\M-\s-h
] . shrink-window-horizontally
)
643 ([?\M-\s-l
] . enlarge-window-horizontally
)
644 ([?\M-\s-k
] . shrink-window
)
645 ([?\M-\s-j
] . enlarge-window
)
646 ([?\s-\
[] .
(lambda ()
648 (exwm-workspace-switch-create
649 (b/exwm-ws-prev-index
))))
650 ([?\s-\
]] .
(lambda ()
652 (exwm-workspace-switch-create
653 (b/exwm-ws-next-index
))))
654 ([?\s-
{] .
(lambda ()
656 (exwm-workspace-move-window
657 (b/exwm-ws-prev-index
))))
658 ([?\s-
}] .
(lambda ()
660 (exwm-workspace-move-window
661 (b/exwm-ws-next-index
))))
662 ,@(mapcar (lambda (i)
663 `(,(kbd (format "s-%d" i
)) .
666 (exwm-workspace-switch-create ,i
))))
667 (number-sequence 0 (1- exwm-workspace-number
)))
668 ([?\s-t
] . exwm-floating-toggle-floating
)
669 ([?\s-f
] . exwm-layout-toggle-fullscreen
)
670 ([?\s-W
] .
(lambda ()
672 (kill-buffer (current-buffer))))
673 ([?\s-Q
] .
(lambda ()
675 (exwm-manage--kill-client)))
676 ([?\s-
\'] .
(lambda ()
678 (start-process-shell-command
679 "rofi-light" nil
"rofi-light")))
683 (start-process "" nil "pamixer" "--toggle-mute")))
684 ([XF86AudioLowerVolume] .
688 "" nil "pamixer" "--allow-boost" "--decrease" "5")))
689 ([XF86AudioRaiseVolume] .
693 "" nil "pamixer" "--allow-boost" "--increase" "5")))
697 (start-process "" nil "mpc" "toggle")))
701 (start-process "" nil "mpc" "prev")))
705 (start-process "" nil "mpc" "next")))
709 (start-process "" nil "dm-tool" "lock")))
710 ([\s-XF86Back] . previous-buffer)
711 ([\s-XF86Forward] . next-buffer)))
713 ;; Line-editing shortcuts
714 (setq exwm-input-simulation-keys
719 ([?\M-f] . [C-right])
727 ([?\C-k] . [S-end ?\C-x])
734 ([?\M-d] . [C-S-right ?\C-x])
735 ([?\M-\d] . [C-S-left ?\C-x])
742 ([?\C-g] . [escape]))))
744 (use-feature exwm-manage
748 (exwm-manage-finish . (lambda ()
749 (when exwm-class-name
751 ((string= exwm-class-name "Abrowser")
752 (exwm-input-set-local-simulation-keys
753 `(,@exwm-input-simulation-keys
754 ([?\C-\S-d] . [?\C-d]))))
755 ((string= exwm-class-name "URxvt")
756 (exwm-input-set-local-simulation-keys
757 '(([?\C-c ?\C-c] . [?\C-c])
758 ([?\C-c ?\C-u] . [?\C-u]))))
759 ((string= exwm-class-name "Zathura")
760 (exwm-input-set-local-simulation-keys
762 ([?\C-n] . [C-down])))))))))
764 (use-feature exwm-randr
770 (exwm-randr-workspace-monitor-plist '(1 "VGA-1")))
772 (use-feature exwm-systemtray
776 (exwm-systemtray-enable))
778 (use-feature exwm-workspace)
780 (use-package exwm-edit
784 ;; use the org-plus-contrib package to get the whole deal
785 (use-package org-plus-contrib)
790 (setq org-src-tab-acts-natively t
791 org-src-preserve-indentation nil
792 org-edit-src-content-indentation 0
793 org-link-email-description-format "Email %c: %s" ; %.30s
794 org-highlight-latex-and-related '(entities)
795 org-use-speed-commands t
796 org-startup-folded 'content
797 org-catch-invisible-edits 'show-and-error
799 (when (version< org-version "9.3")
800 (setq org-email-link-description-format
801 org-link-email-description-format))
802 (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t)
803 (add-to-list 'org-modules 'org-habit)
805 (("C-c a o a" . org-agenda)
807 ("M-L" . org-insert-last-stored-link)
808 ("M-O" . org-toggle-link-display))
809 :hook ((org-mode . org-indent-mode)
810 (org-mode . auto-fill-mode)
811 (org-mode . flyspell-mode))
813 (org-pretty-entities t)
814 (org-agenda-files '("~/usr/org/todos/personal.org"
815 "~/usr/org/todos/habits.org"
816 "~/src/git/masters-thesis/todo.org"))
817 (org-agenda-start-on-weekday 0)
818 (org-agenda-time-leading-zero t)
819 (org-habit-graph-column 44)
820 (org-latex-packages-alist '(("" "listings") ("" "color")))
822 '(org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21"))))
823 '(org-block ((t (:background "#1d1f21"))))
824 '(org-latex-and-related ((t (:foreground "#b294bb")))))
826 (use-feature ox-latex
829 (setq org-latex-listings 'listings
830 ;; org-latex-prefer-user-labels t
832 (add-to-list 'org-latex-classes
833 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
834 ("\\section{%s}" . "\\section*{%s}")
835 ("\\subsection{%s}" . "\\subsection*{%s}")
836 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
837 ("\\paragraph{%s}" . "\\paragraph*{%s}")
838 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
840 (require 'ox-beamer))
842 (use-feature ox-extra
844 (ox-extras-activate '(latex-header-blocks ignore-headlines)))
846 ;; asynchronous tangle, using emacs-async to asynchronously tangle an
847 ;; org file. closely inspired by
848 ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
849 (with-eval-after-load 'org
850 (defvar b/show-async-tangle-results nil
851 "Keep *emacs* async buffers around for later inspection.")
853 (defvar b/show-async-tangle-time nil
854 "Show the time spent tangling the file.")
856 (defun b/async-babel-tangle ()
857 "Tangle org file asynchronously."
859 (let* ((file-tangle-start-time (current-time))
860 (file (buffer-file-name))
861 (file-nodir (file-name-nondirectory file))
862 ;; (async-quiet-switch "-q")
863 (file-noext (file-name-sans-extension file)))
867 (org-babel-tangle-file ,file))
868 (unless b/show-async-tangle-results
871 (message "Tangled %s%s"
873 (if b/show-async-tangle-time
875 (float-time (time-subtract (current-time)
876 ',file-tangle-start-time)))
878 (message "Tangling %s failed" ,file-nodir))))))))
881 'safe-local-variable-values
882 '(eval add-hook 'after-save-hook #'b/async-babel-tangle 'append 'local))
884 ;; *the* right way to do git
887 :bind (("C-x g" . magit-status)
888 ("C-c g g" . magit-status)
889 ("C-c g b" . magit-blame-addition)
890 ("C-c g l" . magit-log-buffer-file))
892 (magit-add-section-hook 'magit-status-sections-hook
893 'magit-insert-modules
894 'magit-insert-stashes
896 ;; (magit-add-section-hook 'magit-status-sections-hook
897 ;; 'magit-insert-ignored-files
898 ;; 'magit-insert-untracked-files
900 (setq magit-repository-directories '(("~/" . 0)
902 (nconc magit-section-initial-visibility-alist
903 '(([unpulled status] . show)
904 ([unpushed status] . show)))
906 (magit-diff-refine-hunk t)
907 (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1)
908 :custom-face (magit-diff-file-heading ((t (:weight normal)))))
910 ;; recently opened files
914 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
916 (recentf-max-saved-items 2000))
918 ;; smart M-x enhancement (needed by counsel for history)
924 (:map ivy-minibuffer-map
925 ([escape] . keyboard-escape-quit)
926 ([S-up] . ivy-previous-history-element)
927 ([S-down] . ivy-next-history-element)
928 ("DEL" . ivy-backward-delete-char))
932 ivy-use-virtual-buffers t
933 ivy-virtual-abbreviate 'abbreviate
934 ivy-count-format "%d/%d ")
936 (defvar b/ivy-ignore-buffer-modes '(magit-mode erc-mode dired-mode))
937 (defun b/ivy-ignore-buffer-p (str)
938 "Return non-nil if str names a buffer with a major mode
939 derived from one of `b/ivy-ignore-buffer-modes'.
941 This function is intended for use with `ivy-ignore-buffers'."
942 (let* ((buf (get-buffer str))
943 (mode (and buf (buffer-local-value 'major-mode buf))))
945 (apply #'provided-mode-derived-p mode b/ivy-ignore-buffer-modes))))
946 (add-to-list 'ivy-ignore-buffers 'b/ivy-ignore-buffer-p)
950 ;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold))))
951 ;; (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold))))
952 ;; (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold))))
957 :bind (("C-s" . swiper-isearch)
959 ("C-S-s" . isearch-forward)))
963 :bind (([remap execute-extended-command] . counsel-M-x)
964 ([remap find-file] . counsel-find-file)
965 ("C-c b b" . ivy-switch-buffer)
966 ("C-c f ." . counsel-find-file)
967 ("C-c f l" . counsel-find-library)
968 ("C-c f r" . counsel-recentf)
969 ("C-c x" . counsel-M-x)
970 :map minibuffer-local-map
971 ("C-r" . counsel-minibuffer-history))
974 (defalias 'locate #'counsel-locate))
978 :commands (helm-M-x helm-mini helm-resume)
979 :bind (("M-x" . helm-M-x)
980 ("M-y" . helm-show-kill-ring)
981 ("C-x b" . helm-mini)
982 ("C-x C-b" . helm-buffers-list)
983 ("C-x C-f" . helm-find-files)
984 ("C-h r" . helm-info-emacs)
985 ("C-s-r" . helm-resume)
987 ("<tab>" . helm-execute-persistent-action)
988 ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals
989 ("C-z" . helm-select-action)) ; List actions
990 :config (helm-mode 1)))
995 :bind ("C-c a s e" . eshell)
997 (eval-when-compile (defvar eshell-prompt-regexp))
998 (defun b/eshell-quit-or-delete-char (arg)
1000 (if (and (eolp) (looking-back eshell-prompt-regexp nil))
1001 (eshell-life-is-too-much)
1004 (defun b/eshell-clear ()
1006 (let ((inhibit-read-only t))
1008 (eshell-send-input))
1010 (defun b/eshell-setup ()
1011 (make-local-variable 'company-idle-delay)
1012 (defvar company-idle-delay)
1013 (setq company-idle-delay nil)
1014 (bind-keys :map eshell-mode-map
1015 ("C-d" . b/eshell-quit-or-delete-char)
1016 ("C-S-l" . b/eshell-clear)
1017 ("M-r" . counsel-esh-history)
1018 ([tab] . company-complete)))
1020 :hook (eshell-mode . b/eshell-setup)
1022 (eshell-hist-ignoredups t)
1023 (eshell-input-filter 'eshell-input-filter-initial-space))
1025 (use-feature ibuffer
1027 (("C-x C-b" . ibuffer)
1028 :map ibuffer-mode-map
1029 ("P" . ibuffer-backward-filter-group)
1030 ("N" . ibuffer-forward-filter-group)
1031 ("M-p" . ibuffer-do-print)
1032 ("M-n" . ibuffer-do-shell-command-pipe-replace))
1034 ;; Use human readable Size column instead of original one
1035 (define-ibuffer-column size-h
1036 (:name "Size" :inline t)
1038 ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0)))
1039 ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0)))
1040 ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0)))
1041 (t (format "%8d" (buffer-size)))))
1043 (ibuffer-saved-filter-groups
1045 ("dired" (mode . dired-mode))
1046 ("org" (mode . org-mode))
1049 (mode . gnus-group-mode)
1050 (mode . gnus-summary-mode)
1051 (mode . gnus-article-mode)
1052 ;; not really, but...
1053 (mode . message-mode)))
1062 (mode . eshell-mode)
1064 (mode . term-mode)))
1067 (mode . python-mode)
1071 (mode . emacs-lisp-mode)
1072 (mode . scheme-mode)
1073 (mode . haskell-mode)
1076 (mode . alloy-mode)))
1079 (mode . bibtex-mode)
1080 (mode . latex-mode)))
1083 (name . "^\\*scratch\\*$")
1084 (name . "^\\*Messages\\*$")))
1085 ("exwm" (mode . exwm-mode))
1086 ("erc" (mode . erc-mode)))))
1088 '((mark modified read-only locked " "
1089 (name 72 72 :left :elide)
1091 (size-h 9 -1 :right)
1093 (mode 16 16 :left :elide)
1094 " " filename-and-process)
1098 :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
1100 (use-feature outline
1102 :hook (prog-mode . outline-minor-mode)
1105 outline-minor-mode-map
1106 ("<s-tab>" . outline-toggle-children)
1107 ("M-p" . outline-previous-visible-heading)
1108 ("M-n" . outline-next-visible-heading)
1109 :prefix-map b/outline-prefix-map
1111 ("TAB" . outline-toggle-children)
1112 ("a" . outline-hide-body)
1113 ("H" . outline-hide-body)
1114 ("S" . outline-show-all)
1115 ("h" . outline-hide-subtree)
1116 ("s" . outline-show-subtree)))
1118 (use-feature ls-lisp
1119 :custom (ls-lisp-dirs-first t))
1123 (setq dired-dwim-target t
1124 dired-listing-switches "-alh"
1125 ls-lisp-use-insert-directory-program nil)
1127 ;; easily diff 2 marked files
1128 ;; https://oremacs.com/2017/03/18/dired-ediff/
1129 (defun dired-ediff-files ()
1131 (require 'dired-aux)
1132 (defvar ediff-after-quit-hook-internal)
1133 (let ((files (dired-get-marked-files))
1134 (wnd (current-window-configuration)))
1135 (if (<= (length files) 2)
1136 (let ((file1 (car files))
1137 (file2 (if (cdr files)
1141 (dired-dwim-target-directory)))))
1142 (if (file-newer-than-file-p file1 file2)
1143 (ediff-files file2 file1)
1144 (ediff-files file1 file2))
1145 (add-hook 'ediff-after-quit-hook-internal
1147 (setq ediff-after-quit-hook-internal nil)
1148 (set-window-configuration wnd))))
1149 (error "no more than 2 files should be marked"))))
1152 (setq dired-guess-shell-alist-user
1153 '(("\\.pdf\\'" "evince" "zathura" "okular")
1154 ("\\.doc\\'" "libreoffice")
1155 ("\\.docx\\'" "libreoffice")
1156 ("\\.ppt\\'" "libreoffice")
1157 ("\\.pptx\\'" "libreoffice")
1158 ("\\.xls\\'" "libreoffice")
1159 ("\\.xlsx\\'" "libreoffice")
1160 ("\\.flac\\'" "mpv")))
1161 :bind (:map dired-mode-map
1162 ("b" . dired-up-directory)
1163 ("e" . dired-ediff-files)
1164 ("E" . dired-toggle-read-only)
1165 ("\\" . dired-hide-details-mode)
1168 (b/dired-start-process "zathura"))))
1169 :hook (dired-mode . dired-hide-details-mode))
1173 (temp-buffer-resize-mode)
1174 (setq help-window-select t))
1178 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
1179 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
1180 (add-to-list 'tramp-default-proxies-alist
1181 (list (regexp-quote (system-name)) nil nil)))
1184 :config (dash-enable-font-lock))
1186 (use-feature doc-view
1187 :bind (:map doc-view-mode-map
1188 ("M-RET" . image-previous-line)))
1193 ;; highlight uncommitted changes in the left fringe
1194 (use-package diff-hl
1197 (setq diff-hl-draw-borders nil)
1198 (global-diff-hl-mode)
1199 :hook (magit-post-refresh . diff-hl-magit-post-refresh))
1201 ;; display Lisp objects at point in the echo area
1203 :when (version< "25" emacs-version)
1204 :config (global-eldoc-mode))
1206 ;; highlight matching parens
1209 :config (show-paren-mode))
1211 (use-feature elec-pair
1213 :config (electric-pair-mode))
1216 :config (column-number-mode)
1218 ;; Save what I copy into clipboard from other applications into Emacs'
1219 ;; kill-ring, which would allow me to still be able to easily access
1220 ;; it in case I kill (cut or copy) something else inside Emacs before
1221 ;; yanking (pasting) what I'd originally intended to.
1222 (save-interprogram-paste-before-kill t))
1224 ;; save minibuffer history
1225 (use-feature savehist
1229 (add-to-list 'savehist-additional-variables 'kill-ring))
1231 ;; automatically save place in files
1232 (use-feature saveplace
1233 :when (version< "25" emacs-version)
1234 :config (save-place-mode))
1236 (use-feature prog-mode
1237 :config (global-prettify-symbols-mode)
1238 (defun indicate-buffer-boundaries-left ()
1239 (setq indicate-buffer-boundaries 'left))
1240 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
1242 (use-feature text-mode
1243 :hook (text-mode . indicate-buffer-boundaries-left))
1245 (use-feature conf-mode
1248 (use-feature sh-mode
1251 (use-package company
1254 (:map company-active-map
1255 ([tab] . company-complete-common-or-cycle)
1256 ([escape] . company-abort))
1258 (company-minimum-prefix-length 1)
1259 (company-selection-wrap-around t)
1260 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
1261 (company-dabbrev-downcase nil)
1262 (company-dabbrev-ignore-case nil)
1264 (global-company-mode t))
1266 (use-package flycheck
1268 :hook (prog-mode . flycheck-mode)
1270 (:map flycheck-mode-map
1271 ("M-P" . flycheck-previous-error)
1272 ("M-N" . flycheck-next-error))
1274 ;; Use the load-path from running Emacs when checking elisp files
1275 (setq flycheck-emacs-lisp-load-path 'inherit)
1277 ;; Only flycheck when I actually save the buffer
1278 (setq flycheck-check-syntax-automatically '(mode-enabled save))
1279 :custom (flycheck-mode-line-prefix "flyc"))
1281 (use-feature flyspell)
1283 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
1287 ;; ’ can be part of a word
1288 (setq ispell-local-dictionary-alist
1289 `((nil "[[:alpha:]]" "[^[:alpha:]]"
1290 "['\x2019]" nil ("-B") nil utf-8))
1291 ispell-program-name (executable-find "hunspell"))
1292 ;; don't send ’ to the subprocess
1293 (defun endless/replace-apostrophe (args)
1294 (cons (replace-regexp-in-string
1297 (advice-add #'ispell-send-string :filter-args
1298 #'endless/replace-apostrophe)
1300 ;; convert ' back to ’ from the subprocess
1301 (defun endless/replace-quote (args)
1302 (if (not (derived-mode-p 'org-mode))
1304 (cons (replace-regexp-in-string
1307 (advice-add #'ispell-parse-output :filter-args
1308 #'endless/replace-quote))
1311 :hook (text-mode . abbrev-mode))
1314 ;;; Programming modes
1316 (use-feature lisp-mode
1318 (defun indent-spaces-mode ()
1319 (setq indent-tabs-mode nil))
1320 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
1323 :hook (emacs-lisp-mode . reveal-mode))
1325 (use-feature elisp-mode)
1327 (use-package alloy-mode
1328 :straight (:host github :repo "dwwmmn/alloy-mode")
1330 :config (setq alloy-basic-offset 2)
1331 :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil))))
1333 (eval-when-compile (defvar lean-mode-map))
1334 (use-package lean-mode
1336 :bind (:map lean-mode-map
1337 ("S-SPC" . company-complete))
1339 (require 'lean-input)
1340 (setq default-input-method "Lean"
1341 lean-input-tweak-all '(lean-input-compose
1342 (lean-input-prepend "/")
1343 (lean-input-nonempty))
1344 lean-input-user-translations '(("/" "/")))
1348 (use-package proof-site ; for Coq
1349 :straight proof-general)
1351 (use-package haskell-mode
1353 (setq haskell-indentation-layout-offset 4
1354 haskell-indentation-left-offset 4
1355 flycheck-checker 'haskell-hlint
1356 flycheck-disabled-checkers '(haskell-stack-ghc haskell-ghc)))
1360 :commands dante-mode
1361 :hook (haskell-mode . dante-mode))
1363 (use-package hlint-refactor
1365 :bind (:map hlint-refactor-mode-map
1366 ("C-c l b" . hlint-refactor-refactor-buffer)
1367 ("C-c l r" . hlint-refactor-refactor-at-point))
1368 :hook (haskell-mode . hlint-refactor-mode))
1370 (use-package flycheck-haskell
1371 :after haskell-mode)
1372 ;; alternative: hs-lint https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el
1375 (use-feature sgml-mode
1377 (setq sgml-basic-offset 2))
1379 (use-feature css-mode
1381 (setq css-indent-offset 2))
1383 (use-package web-mode
1387 web-mode-code-indent-offset
1388 web-mode-css-indent-offset
1389 web-mode-markup-indent-offset))
1391 (use-package emmet-mode
1392 :after (:any web-mode css-mode sgml-mode)
1393 :bind* (("C-)" . emmet-next-edit-point)
1394 ("C-(" . emmet-prev-edit-point))
1396 (unbind-key "C-j" emmet-mode-keymap)
1397 (setq emmet-move-cursor-between-quotes t)
1398 :hook (web-mode css-mode html-mode sgml-mode))
1401 (use-package meghanada
1403 (:map meghanada-mode-map
1404 (("C-M-o" . meghanada-optimize-import)
1405 ("C-M-t" . meghanada-import-all)))
1406 :hook (java-mode . meghanada-mode)))
1409 (use-package treemacs
1410 :config (setq treemacs-never-persist t))
1412 (use-package yasnippet
1414 ;; (yas-global-mode)
1417 (use-package lsp-mode
1418 :init (setq lsp-eldoc-render-all nil
1419 lsp-highlight-symbol-at-point nil)
1424 (use-package company-lsp
1427 (setq company-lsp-cache-candidates t
1428 company-lsp-async t))
1432 (setq lsp-ui-sideline-update-mode 'point))
1434 (use-package lsp-java
1436 (add-hook 'java-mode-hook
1438 (setq-local company-backends (list 'company-lsp))))
1440 (add-hook 'java-mode-hook 'lsp-java-enable)
1441 (add-hook 'java-mode-hook 'flycheck-mode)
1442 (add-hook 'java-mode-hook 'company-mode)
1443 (add-hook 'java-mode-hook 'lsp-ui-mode))
1445 (use-package dap-mode
1451 (use-package dap-java
1454 (use-package lsp-java-treemacs
1459 :bind (:map eclim-mode-map ("S-SPC" . company-complete))
1460 :hook ((java-mode . eclim-mode)
1461 (eclim-mode . (lambda ()
1462 (make-local-variable 'company-idle-delay)
1463 (defvar company-idle-delay)
1464 ;; (setq company-idle-delay 0.7)
1465 (setq company-idle-delay nil))))
1467 (eclim-auto-save nil)
1468 ;; (eclimd-default-workspace "~/src/eclipse-workspace-exp")
1469 (eclim-executable "~/.p2/pool/plugins/org.eclim_2.8.0/bin/eclim")
1470 (eclim-eclipse-dirs '("~/usr/eclipse/dsl-2018-09/eclipse"))))
1472 (use-package geiser)
1474 (use-feature geiser-guile
1476 (setq geiser-guile-load-path "~/src/git/guix"))
1483 (font-latex-fontify-sectioning 'color)))
1485 (use-package go-mode)
1487 (use-package po-mode
1489 (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit))))
1491 (use-feature tex-mode
1494 (lambda (p) (string-match "^---?" (car p)))
1495 tex--prettify-symbols-alist)
1496 :hook ((tex-mode . auto-fill-mode)
1497 (tex-mode . flyspell-mode)))
1499 (use-package george-mode
1500 :straight (:host nil :repo "https://git.shemshak.org/amin/george-mode")
1506 (add-to-list 'custom-theme-load-path
1508 (convert-standard-filename "lisp") user-emacs-directory))
1509 (load-theme 'tangomod t)
1511 (use-package smart-mode-line
1512 :commands (sml/apply-theme)
1515 (setq sml/theme 'tangomod)
1517 (smart-mode-line-enable))
1519 (use-package doom-modeline
1522 :hook (after-init . doom-modeline-init)
1524 (doom-modeline-buffer-file-name-style 'relative-to-project))
1526 (use-package doom-themes)
1528 (use-package solarized-theme
1531 (load-theme 'solarized-light t))
1537 (setq x-underline-at-descent-line t)
1538 (let ((line (face-attribute 'mode-line :underline)))
1539 (set-face-attribute 'mode-line nil :overline line)
1540 (set-face-attribute 'mode-line-inactive nil :overline line)
1541 (set-face-attribute 'mode-line-inactive nil :underline line)
1542 (set-face-attribute 'mode-line nil :box nil)
1543 (set-face-attribute 'mode-line-inactive nil :box nil)
1544 (set-face-attribute 'mode-line-inactive nil :background "#e1e1e1")) ; d3d7cf
1545 (moody-replace-mode-line-buffer-identification)
1546 (moody-replace-vc-mode))
1548 (use-package mini-modeline
1551 :config (mini-modeline-mode))
1553 (defvar b/org-mode-font-lock-keywords
1554 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
1555 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
1556 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
1557 (4 '(:foreground "#c5c8c6") t))) ; title
1558 "For use with the `doom-tomorrow-night' theme.")
1560 (defun b/lights-on ()
1561 "Enable my favourite light theme."
1563 (mapc #'disable-theme custom-enabled-themes)
1564 (load-theme 'tangomod t)
1565 (sml/apply-theme 'tangomod)
1566 (font-lock-remove-keywords
1567 'org-mode b/org-mode-font-lock-keywords)
1568 (when (featurep 'exwm-systemtray)
1569 (exwm-systemtray--refresh)))
1571 (defun b/lights-off ()
1574 (mapc #'disable-theme custom-enabled-themes)
1575 (load-theme 'doom-one t)
1576 (sml/apply-theme 'automatic)
1577 (font-lock-add-keywords
1578 'org-mode b/org-mode-font-lock-keywords t)
1579 (when (featurep 'exwm-systemtray)
1580 (exwm-systemtray--refresh)))
1583 ("C-c t d" . b/lights-off)
1584 ("C-c t l" . b/lights-on))
1587 ;;; Emacs enhancements & auxiliary packages
1590 :config (setq Man-width 80))
1592 (use-package which-key
1595 (which-key-add-key-based-replacements
1596 ;; prefixes for global prefixes and minor modes
1600 "C-c 8 -" "typo/dashes"
1601 "C-c 8 <" "typo/left-brackets"
1602 "C-c 8 >" "typo/right-brackets"
1604 "C-x a" "abbrev/expand"
1605 "C-x r" "rectangle/register/bookmark"
1606 "C-x v" "version control"
1607 ;; prefixes for my personal bindings
1608 "C-c a" "applications"
1613 "C-c c" "compile-and-comments"
1619 "C-c m" "multiple-cursors"
1620 "C-c P" "projectile"
1621 "C-c P s" "projectile/search"
1622 "C-c P x" "projectile/execute"
1623 "C-c P 4" "projectile/other-window"
1629 ;; prefixes for major modes
1630 (which-key-add-major-mode-key-based-replacements 'message-mode
1631 "C-c f n" "footnote")
1632 (which-key-add-major-mode-key-based-replacements 'org-mode
1633 "C-c C-v" "org-babel")
1634 (which-key-add-major-mode-key-based-replacements 'web-mode
1635 "C-c C-a" "web/attributes"
1636 "C-c C-b" "web/blocks"
1638 "C-c C-e" "web/element"
1639 "C-c C-t" "web/tags")
1643 (which-key-add-column-padding 5)
1644 (which-key-max-description-length 32))
1646 (use-package crux ; results in Waiting for git... [2 times]
1648 :bind (("C-c d" . crux-duplicate-current-line-or-region)
1649 ("C-c D" . crux-duplicate-and-comment-current-line-or-region)
1650 ("C-c f C" . crux-copy-file-preserve-attributes)
1651 ("C-c f D" . crux-delete-file-and-buffer)
1652 ("C-c f R" . crux-rename-file-and-buffer)
1653 ("C-c j" . crux-top-join-line)
1654 ("C-S-j" . crux-top-join-line)))
1657 :bind (("C-a" . mwim-beginning-of-code-or-line)
1658 ("C-e" . mwim-end-of-code-or-line)
1659 ("<home>" . mwim-beginning-of-line-or-code)
1660 ("<end>" . mwim-end-of-line-or-code)))
1662 (use-package projectile
1664 :bind-keymap ("C-c P" . projectile-command-map)
1668 (defun b/projectile-mode-line-fun ()
1669 "Report project name and type in the modeline."
1670 (let ((project-name (projectile-project-name))
1671 (project-type (projectile-project-type)))
1673 projectile-mode-line-prefix
1675 (format ":%s" project-type)
1677 (setq projectile-mode-line-function 'b/projectile-mode-line-fun)
1679 (defun my-projectile-invalidate-cache (&rest _args)
1680 ;; ignore the args to `magit-checkout'
1681 (projectile-invalidate-cache nil))
1683 (eval-after-load 'magit-branch
1685 (advice-add 'magit-checkout
1686 :after #'my-projectile-invalidate-cache)
1687 (advice-add 'magit-branch-and-checkout
1688 :after #'my-projectile-invalidate-cache)))
1690 (projectile-completion-system 'ivy)
1691 (projectile-mode-line-prefix " proj"))
1693 (use-package helpful
1696 (("C-S-h c" . helpful-command)
1697 ("C-S-h f" . helpful-callable) ; helpful-function
1698 ("C-S-h v" . helpful-variable)
1699 ("C-S-h k" . helpful-key)
1700 ("C-S-h p" . helpful-at-point)))
1702 (use-package unkillable-scratch
1705 (unkillable-scratch 1)
1707 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1710 ;; | make pretty boxed quotes like this
1712 (use-package boxquote
1715 (:prefix-map b/boxquote-prefix-map
1717 ("b" . boxquote-buffer)
1718 ("B" . boxquote-insert-buffer)
1719 ("d" . boxquote-defun)
1720 ("F" . boxquote-insert-file)
1721 ("hf" . boxquote-describe-function)
1722 ("hk" . boxquote-describe-key)
1723 ("hv" . boxquote-describe-variable)
1724 ("hw" . boxquote-where-is)
1725 ("k" . boxquote-kill)
1726 ("p" . boxquote-paragraph)
1727 ("q" . boxquote-boxquote)
1728 ("r" . boxquote-region)
1729 ("s" . boxquote-shell-command)
1730 ("t" . boxquote-text)
1731 ("T" . boxquote-title)
1732 ("u" . boxquote-unbox)
1733 ("U" . boxquote-unbox-region)
1734 ("y" . boxquote-yank)
1735 ("M-q" . boxquote-fill-paragraph)
1736 ("M-w" . boxquote-kill-ring-save)))
1738 (use-package orgalist
1739 ;; http://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00007.html
1742 :hook (message-mode . orgalist-mode))
1744 ;; easily type pretty quotes & other typography, like ‘’“”-–—«»‹›
1748 (typo-global-mode 1)
1749 :hook (((text-mode erc-mode web-mode) . typo-mode)
1750 (tex-mode . (lambda ()(typo-mode -1)))))
1752 ;; highlight TODOs in buffers
1753 (use-package hl-todo
1756 (global-hl-todo-mode))
1758 (use-package shrink-path
1762 (defvar user-@-host (concat (user-login-name) "@" (system-name) ":"))
1763 (defun +eshell/prompt ()
1764 (concat (propertize user-@-host 'face 'default)
1765 (propertize (abbreviate-file-name default-directory)
1766 'face 'font-lock-comment-face)
1767 (propertize "\n" 'face 'default)
1768 (if (= (user-uid) 0)
1769 (propertize "#" 'face 'red)
1770 (propertize "$" 'face 'default))
1771 (propertize " " 'face 'default)))
1772 (setq eshell-prompt-regexp "\\(.*\n\\)*[$#] "
1773 eshell-prompt-function #'+eshell/prompt))
1775 (use-package eshell-up
1777 :commands eshell-up)
1779 (use-package multi-term
1782 :bind (("C-c a s m m" . multi-term)
1783 ("C-c a s m d" . multi-term-dedicated-toggle)
1784 ("C-c a s m p" . multi-term-prev)
1785 ("C-c a s m n" . multi-term-next)
1787 ("C-c C-j" . term-char-mode))
1789 (setq multi-term-program "screen"
1790 multi-term-program-switches (concat "-c"
1791 (getenv "XDG_CONFIG_HOME")
1793 ;; TODO: add separate bindings for connecting to existing
1794 ;; session vs. always creating a new one
1795 multi-term-dedicated-select-after-open-p t
1796 multi-term-dedicated-window-height 20
1797 multi-term-dedicated-max-window-height 30
1799 '(("C-c C-c" . term-interrupt-subjob)
1800 ("C-c C-e" . term-send-esc)
1801 ("C-c C-j" . term-line-mode)
1803 ;; ("C-y" . term-paste)
1804 ("C-y" . term-send-raw)
1805 ("M-f" . term-send-forward-word)
1806 ("M-b" . term-send-backward-word)
1807 ("M-p" . term-send-up)
1808 ("M-n" . term-send-down)
1809 ("M-j" . term-send-raw-meta)
1810 ("M-y" . term-send-raw-meta)
1811 ("M-/" . term-send-raw-meta)
1812 ("M-0" . term-send-raw-meta)
1813 ("M-1" . term-send-raw-meta)
1814 ("M-2" . term-send-raw-meta)
1815 ("M-3" . term-send-raw-meta)
1816 ("M-4" . term-send-raw-meta)
1817 ("M-5" . term-send-raw-meta)
1818 ("M-6" . term-send-raw-meta)
1819 ("M-7" . term-send-raw-meta)
1820 ("M-8" . term-send-raw-meta)
1821 ("M-9" . term-send-raw-meta)
1822 ("<C-backspace>" . term-send-backward-kill-word)
1823 ("<M-DEL>" . term-send-backward-kill-word)
1824 ("M-d" . term-send-delete-word)
1825 ("M-," . term-send-raw)
1826 ("M-." . comint-dynamic-complete))
1827 term-unbind-key-alist
1828 '("C-z" "C-x" "C-c" "C-h"
1832 (use-package page-break-lines
1835 (page-break-lines-max-width fill-column)
1837 (global-page-break-lines-mode))
1839 (use-package expand-region
1840 :bind ("C-=" . er/expand-region))
1842 (use-package multiple-cursors
1844 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
1845 (:prefix-map b/mc-prefix-map
1847 ("c" . mc/edit-lines)
1848 ("n" . mc/mark-next-like-this)
1849 ("p" . mc/mark-previous-like-this)
1850 ("a" . mc/mark-all-like-this))))
1856 (use-package yasnippet
1859 (defconst yas-verbosity-cur yas-verbosity)
1860 (setq yas-verbosity 2)
1861 (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
1863 (setq yas-verbosity yas-verbosity-cur)
1865 (defun b/yas--maybe-expand-key-filter (cmd)
1866 (when (and (yas--maybe-expand-key-filter cmd)
1867 (not (bound-and-true-p git-commit-mode)))
1869 (defconst b/yas-maybe-expand
1870 '(menu-item "" yas-expand :filter b/yas--maybe-expand-key-filter))
1871 (define-key yas-minor-mode-map
1872 (kbd "SPC") b/yas-maybe-expand)
1876 (use-package debbugs
1879 :repo "emacs-straight/debbugs"
1880 :files (:defaults "Debbugs.wsdl")))
1882 (use-package org-ref
1884 (b/setq-every '("~/usr/org/references.bib")
1885 reftex-default-bibliography
1886 org-ref-default-bibliography)
1888 org-ref-bibliography-notes "~/usr/org/notes.org"
1889 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1893 :init (setq alert-default-style 'notifications))
1895 ;; (use-package fill-column-indicator)
1897 (use-package emojify
1899 :hook (erc-mode . emojify-mode))
1903 (("C-c w <right>" . split-window-right)
1904 ("C-c w <down>" . split-window-below)
1905 ("C-c w s l" . split-window-right)
1906 ("C-c w s j" . split-window-below)
1907 ("C-c w q" . quit-window))
1909 (split-width-threshold 150))
1911 (use-feature windmove
1914 (("C-c w h" . windmove-left)
1915 ("C-c w j" . windmove-down)
1916 ("C-c w k" . windmove-up)
1917 ("C-c w l" . windmove-right)
1918 ("C-c w H" . windmove-swap-states-left)
1919 ("C-c w J" . windmove-swap-states-down)
1920 ("C-c w K" . windmove-swap-states-up)
1921 ("C-c w L" . windmove-swap-states-right)))
1925 :bind ("C-c a p" . pass)
1926 :hook (pass-mode . View-exit))
1928 (use-package pdf-tools
1930 :bind (:map pdf-view-mode-map
1931 ("<C-XF86Back>" . pdf-history-backward)
1932 ("<mouse-8>" . pdf-history-backward)
1933 ("<drag-mouse-8>" . pdf-history-backward)
1934 ("<C-XF86Forward>" . pdf-history-forward)
1935 ("<mouse-9>" . pdf-history-forward)
1936 ("<drag-mouse-9>" . pdf-history-forward)
1937 ("M-RET" . image-previous-line)
1938 ("C-s" . isearch-forward)
1939 ("s s" . isearch-forward))
1940 :config (pdf-tools-install nil t)
1941 :custom (pdf-view-resize-factor 1.05))
1943 (use-package org-pdftools
1944 :straight (:host github :repo "fuxialexander/org-pdftools")
1948 (with-eval-after-load 'org
1949 (require 'org-pdftools)))
1951 (use-package biblio)
1954 :hook (latex-mode . reftex-mode))
1956 (use-feature reftex-cite
1958 :disabled ; enable to disable
1959 ; reftex-cite's default choice
1962 (defun reftex-get-bibkey-default ()
1963 "If the cursor is in a citation macro, return the word before the macro."
1964 (let* ((macro (reftex-what-macro 1)))
1966 (when (and macro (string-match "cite" (car macro)))
1967 (goto-char (cdr macro)))
1968 (reftex-this-word)))))
1970 (use-package minions
1972 :config (minions-mode))
1976 (dmenu-prompt-string "run: ")
1977 (dmenu-save-file (b/var "dmenu-items")))
1980 ;; TODO: fix build by properly building the eosd-pixbuf.c module
1981 ;; e.g. see https://github.com/raxod502/straight.el/issues/386
1983 :straight (:host github :repo "clarete/eosd")
1989 (use-package nnreddit
1994 (nnreddit-python-command "python3"))
1997 ;;; Email (with Gnus)
1999 (defvar b/maildir (expand-file-name "~/mail/"))
2000 (with-eval-after-load 'recentf
2001 (add-to-list 'recentf-exclude b/maildir))
2004 b/gnus-init-file (b/etc "gnus")
2005 mail-user-agent 'gnus-user-agent
2006 read-mail-command 'gnus)
2009 :bind (("s-m" . gnus)
2010 ("s-M" . gnus-unplugged)
2012 ("C-c a M" . gnus-unplugged))
2015 gnus-select-method '(nnnil "")
2016 gnus-secondary-select-methods
2017 '((nnimap "shemshak"
2018 (nnimap-stream plain)
2019 (nnimap-address "127.0.0.1")
2020 (nnimap-server-port 143)
2021 (nnimap-authenticator plain)
2022 (nnimap-user "amin@shemshak.local"))
2024 (nnimap-stream plain)
2025 (nnimap-address "127.0.0.1")
2026 (nnimap-server-port 143)
2027 (nnimap-authenticator plain)
2028 (nnimap-user "bandali@gnu.local")
2029 (nnimap-inbox "INBOX")
2030 (nnimap-split-methods 'nnimap-split-fancy)
2031 (nnimap-split-fancy (|
2032 ;; (: gnus-registry-split-fancy-with-parent)
2033 ;; (: gnus-group-split-fancy "INBOX" t "INBOX")
2035 (list ".*<\\(.*\\)\\.\\(non\\)?gnu\\.org>.*" "l.\\1")
2036 ;; *.lists.sr.ht, omitting one dot if present
2037 ;; add more \\.?\\([^.]*\\) if needed
2038 (list ".*<~\\(.*\\)/\\([^.]*\\)\\.?\\([^.]*\\)\\.lists.sr.ht>.*" "l.~\\1.\\2\\3")
2040 (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters")
2042 (list ".*atreus.freelists.org" "l.atreus")
2043 (list ".*deepspec.lists.cs.princeton.edu" "l.deepspec")
2044 ;; (list ".*haskell-art.we.lurk.org" "l.haskell.art") ;d
2045 (list ".*haskell-cafe.haskell.org" "l.haskell-cafe")
2046 ;; (list ".*notmuch.notmuchmail.org" "l.notmuch") ;u
2047 ;; (list ".*dev.lists.parabola.nu" "l.parabola-dev") ;u
2048 ;; ----------------------------------
2049 ;; legend: (u)nsubscribed | (d)ead
2050 ;; ----------------------------------
2051 ;; otherwise, leave mail in INBOX
2054 (nnimap-stream plain)
2055 (nnimap-address "127.0.0.1")
2056 (nnimap-server-port 143)
2057 (nnimap-authenticator plain)
2058 (nnimap-user "abandali@uw.local")
2059 (nnimap-inbox "INBOX")
2060 (nnimap-split-methods 'nnimap-split-fancy)
2061 (nnimap-split-fancy (|
2062 ;; (: gnus-registry-split-fancy-with-parent)
2064 ("subject" "SE\\s-?212" "course.se212-f19")
2065 (from "SE\\s-?212" "course.se212-f19")
2069 (nnimap-stream plain)
2070 (nnimap-address "127.0.0.1")
2071 (nnimap-server-port 143)
2072 (nnimap-authenticator plain)
2073 (nnimap-user "abandali@csc.uw.local")))
2074 gnus-message-archive-group "nnimap+gnu:INBOX"
2077 (to-address . "atreus@freelists.org")
2078 (to-list . "atreus@freelists.org"))
2080 (to-address . "deepspec@lists.cs.princeton.edu")
2081 (to-list . "deepspec@lists.cs.princeton.edu")
2082 (list-identifier . "\\[deepspec\\]"))
2084 (to-address . "emacs-devel@gnu.org")
2085 (to-list . "emacs-devel@gnu.org"))
2086 ("l\\.help-gnu-emacs"
2087 (to-address . "help-gnu-emacs@gnu.org")
2088 (to-list . "help-gnu-emacs@gnu.org"))
2089 ("l\\.info-gnu-emacs"
2090 (to-address . "info-gnu-emacs@gnu.org")
2091 (to-list . "info-gnu-emacs@gnu.org"))
2092 ("l\\.emacs-orgmode"
2093 (to-address . "emacs-orgmode@gnu.org")
2094 (to-list . "emacs-orgmode@gnu.org")
2095 (list-identifier . "\\[O\\]"))
2096 ("l\\.emacs-tangents"
2097 (to-address . "emacs-tangents@gnu.org")
2098 (to-list . "emacs-tangents@gnu.org"))
2099 ("l\\.emacsconf-discuss"
2100 (to-address . "emacsconf-discuss@gnu.org")
2101 (to-list . "emacsconf-discuss@gnu.org"))
2102 ("l\\.emacsconf-register"
2103 (to-address . "emacsconf-register@gnu.org")
2104 (to-list . "emacsconf-register@gnu.org"))
2105 ("l\\.emacsconf-submit"
2106 (to-address . "emacsconf-submit@gnu.org")
2107 (to-list . "emacsconf-submit@gnu.org"))
2108 ("l\\.fencepost-users"
2109 (to-address . "fencepost-users@gnu.org")
2110 (to-list . "fencepost-users@gnu.org")
2111 (list-identifier . "\\[Fencepost-users\\]"))
2112 ("l\\.gnewsense-art"
2113 (to-address . "gnewsense-art@nongnu.org")
2114 (to-list . "gnewsense-art@nongnu.org")
2115 (list-identifier . "\\[gNewSense-art\\]"))
2116 ("l\\.gnewsense-dev"
2117 (to-address . "gnewsense-dev@nongnu.org")
2118 (to-list . "gnewsense-dev@nongnu.org")
2119 (list-identifier . "\\[Gnewsense-dev\\]"))
2120 ("l\\.gnewsense-users"
2121 (to-address . "gnewsense-users@nongnu.org")
2122 (to-list . "gnewsense-users@nongnu.org")
2123 (list-identifier . "\\[gNewSense-users\\]"))
2124 ("l\\.gnunet-developers"
2125 (to-address . "gnunet-developers@gnu.org")
2126 (to-list . "gnunet-developers@gnu.org")
2127 (list-identifier . "\\[GNUnet-developers\\]"))
2129 (to-address . "help-gnunet@gnu.org")
2130 (to-list . "help-gnunet@gnu.org")
2131 (list-identifier . "\\[Help-gnunet\\]"))
2133 (to-address . "bug-gnuzilla@gnu.org")
2134 (to-list . "bug-gnuzilla@gnu.org")
2135 (list-identifier . "\\[Bug-gnuzilla\\]"))
2137 (to-address . "gnuzilla-dev@gnu.org")
2138 (to-list . "gnuzilla-dev@gnu.org")
2139 (list-identifier . "\\[Gnuzilla-dev\\]"))
2141 (to-address . "guile-devel@gnu.org")
2142 (to-list . "guile-devel@gnu.org"))
2144 (to-address . "guile-user@gnu.org")
2145 (to-list . "guile-user@gnu.org"))
2147 (to-address . "guix-devel@gnu.org")
2148 (to-list . "guix-devel@gnu.org"))
2150 (to-address . "help-guix@gnu.org")
2151 (to-list . "help-guix@gnu.org"))
2153 (to-address . "info-guix@gnu.org")
2154 (to-list . "info-guix@gnu.org"))
2155 ("l\\.savannah-hackers-public"
2156 (to-address . "savannah-hackers-public@gnu.org")
2157 (to-list . "savannah-hackers-public@gnu.org"))
2158 ("l\\.savannah-users"
2159 (to-address . "savannah-users@gnu.org")
2160 (to-list . "savannah-users@gnu.org"))
2162 (to-address . "www-commits@gnu.org")
2163 (to-list . "www-commits@gnu.org"))
2165 (to-address . "www-discuss@gnu.org")
2166 (to-list . "www-discuss@gnu.org"))
2168 (to-address . "haskell-art@we.lurk.org")
2169 (to-list . "haskell-art@we.lurk.org")
2170 (list-identifier . "\\[haskell-art\\]"))
2172 (to-address . "haskell-cafe@haskell.org")
2173 (to-list . "haskell-cafe@haskell.org")
2174 (list-identifier . "\\[Haskell-cafe\\]"))
2176 (to-address . "notmuch@notmuchmail.org")
2177 (to-list . "notmuch@notmuchmail.org"))
2179 (to-address . "dev@lists.parabola.nu")
2180 (to-list . "dev@lists.parabola.nu")
2181 (list-identifier . "\\[Dev\\]"))
2182 ("l\\.~bandali\\.public-inbox"
2183 (to-address . "~bandali/public-inbox@lists.sr.ht")
2184 (to-list . "~bandali/public-inbox@lists.sr.ht"))
2185 ("l\\.~sircmpwn\\.free-writers-club"
2186 (to-address . "~sircmpwn/free-writers-club@lists.sr.ht")
2187 (to-list . "~sircmpwn/free-writers-club@lists.sr.ht"))
2188 ("l\\.~sircmpwn\\.srht-admins"
2189 (to-address . "~sircmpwn/sr.ht-admins@lists.sr.ht")
2190 (to-list . "~sircmpwn/sr.ht-admins@lists.sr.ht"))
2191 ("l\\.~sircmpwn\\.srht-announce"
2192 (to-address . "~sircmpwn/sr.ht-announce@lists.sr.ht")
2193 (to-list . "~sircmpwn/sr.ht-announce@lists.sr.ht"))
2194 ("l\\.~sircmpwn\\.srht-dev"
2195 (to-address . "~sircmpwn/sr.ht-dev@lists.sr.ht")
2196 (to-list . "~sircmpwn/sr.ht-dev@lists.sr.ht"))
2197 ("l\\.~sircmpwn\\.srht-discuss"
2198 (to-address . "~sircmpwn/sr.ht-discuss@lists.sr.ht")
2199 (to-list . "~sircmpwn/sr.ht-discuss@lists.sr.ht"))
2201 (to-address . "webmasters@gnu.org")
2202 (to-list . "webmasters@gnu.org"))
2209 gnus-large-newsgroup 50
2210 gnus-home-directory (b/var "gnus/")
2211 gnus-directory (concat gnus-home-directory "news/")
2212 message-directory (concat gnus-home-directory "mail/")
2213 nndraft-directory (concat gnus-home-directory "drafts/")
2214 gnus-save-newsrc-file nil
2215 gnus-read-newsrc-file nil
2216 gnus-interactive-exit nil
2217 gnus-gcc-mark-as-read t)
2219 (when (version< emacs-version "27")
2221 'nnmail-split-abbrev-alist
2222 '(list . "list-id\\|list-post\\|x-mailing-list\\|x-beenthere\\|x-loop")
2225 ;; (gnus-registry-initialize)
2227 (with-eval-after-load 'recentf
2228 (add-to-list 'recentf-exclude gnus-home-directory)))
2230 (use-feature gnus-art
2233 gnus-buttonized-mime-types '("multipart/\\(signed\\|encrypted\\)")
2234 gnus-visible-headers
2235 (concat gnus-visible-headers "\\|^List-Id:\\|^X-RT-Originator:\\|^User-Agent:")
2236 gnus-sorted-header-list
2237 '("^From:" "^Subject:" "^Summary:" "^Keywords:"
2238 "^Followup-To:" "^To:" "^Cc:" "X-RT-Originator"
2239 "^Newsgroups:" "List-Id:" "^Organization:"
2240 "^User-Agent:" "^Date:")
2241 ;; local-lapsed article dates
2242 ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11
2243 gnus-article-date-headers '(user-defined)
2244 gnus-article-time-format
2246 (let* ((date (format-time-string "%a, %d %b %Y %T %z" time))
2247 (local (article-make-date-line date 'local))
2248 (combined-lapsed (article-make-date-line date
2251 (string-match " (.+" combined-lapsed)
2252 (match-string 0 combined-lapsed))))
2253 (concat local lapsed))))
2255 :map gnus-article-mode-map
2256 ("M-L" . org-store-link)))
2258 (use-feature gnus-sum
2259 :bind (:map gnus-summary-mode-map
2260 :prefix-map b/gnus-summary-prefix-map
2262 ("r" . gnus-summary-reply)
2263 ("w" . gnus-summary-wide-reply)
2264 ("v" . gnus-summary-show-raw-article))
2267 :map gnus-summary-mode-map
2268 ("M-L" . org-store-link))
2269 :hook (gnus-summary-mode . b/no-mouse-autoselect-window)
2271 (gnus-thread-sort-functions '(gnus-thread-sort-by-number
2272 gnus-thread-sort-by-subject
2273 gnus-thread-sort-by-date)))
2275 (use-feature gnus-msg
2277 (defvar b/signature "Amin Bandali
2278 Free Software Activist | GNU Webmaster & Volunteer
2279 GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103
2280 https://shemshak.org/~amin")
2281 (defvar b/gnu-signature "Amin Bandali
2282 Free Software Activist | GNU Webmaster & Volunteer
2283 GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103
2284 https://bandali.eu.org")
2285 (defvar b/uw-signature "Amin Bandali, MMath Student
2286 Cheriton School of Computer Science
2287 University of Waterloo
2288 https://bandali.eu.org")
2289 (defvar b/csc-signature "Amin Bandali
2291 Computer Science Club, University of Waterloo
2292 https://csclub.uwaterloo.ca/~abandali")
2293 (setq gnus-posting-styles
2295 (address "bandali@gnu.org")
2296 (signature b/gnu-signature)
2297 (eval (set (make-local-variable 'message-user-fqdn) "fencepost.gnu.org")))
2298 ("nnimap\\+shemshak:.*"
2299 (address "amin@shemshak.org")
2301 (signature b/signature)
2302 (gcc "nnimap+shemshak:Sent")
2303 (eval (setq b/message-cite-say-hi t)))
2304 ((header "subject" "ThankCRM")
2305 (to "webmasters-comment@gnu.org")
2307 (eval (setq b/message-cite-say-hi nil)))
2309 (address "bandali@uwaterloo.ca")
2310 (signature b/uw-signature))
2311 ("nnimap\\+uw:INBOX"
2312 (gcc "\"nnimap+uw:Sent Items\""))
2314 (address "bandali@csclub.uwaterloo.ca")
2315 (signature b/csc-signature)
2316 (gcc "nnimap+csc:Sent")))))
2318 (use-feature gnus-topic
2319 :hook (gnus-group-mode . gnus-topic-mode)
2320 :config (setq gnus-topic-line-format "%i[ %A: %(%{%n%}%) ]%v\n"))
2322 (use-feature gnus-agent
2324 (setq gnus-agent-synchronize-flags 'ask)
2325 :hook (gnus-group-mode . gnus-agent-mode))
2327 (use-feature gnus-group
2329 (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)"))
2332 ;; problematic with ebdb's popup, *EBDB-Gnus*
2333 (use-feature gnus-win
2335 (setq gnus-use-full-window nil)))
2337 (use-feature gnus-dired
2338 :commands gnus-dired-mode
2340 (add-hook 'dired-mode-hook 'gnus-dired-mode))
2342 (use-feature mm-decode
2344 (setq mm-discouraged-alternatives '("text/html" "text/richtext")
2345 mm-decrypt-option 'known
2346 mm-verify-option 'known))
2350 (mm-uu-diff-groups-regexp
2351 "\\(gmane\\|gnu\\|l\\)\\..*\\(diff\\|commit\\|cvs\\|bug\\|dev\\)"))
2353 (use-feature sendmail
2355 (setq sendmail-program (executable-find "msmtp")
2356 ;; message-sendmail-extra-arguments '("-v" "-d")
2357 mail-specify-envelope-from t
2358 mail-envelope-from 'header))
2360 (use-feature message
2362 ;; redefine for a simplified In-Reply-To header
2363 ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67)
2364 (defun message-make-in-reply-to ()
2365 "Return the In-Reply-To header for this message."
2366 (when message-reply-headers
2367 (let ((from (mail-header-from message-reply-headers))
2368 (msg-id (mail-header-id message-reply-headers)))
2372 (defconst b/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:")
2373 (defconst message-cite-style-bandali
2374 '((message-cite-function 'message-cite-original)
2375 (message-citation-line-function 'message-insert-formatted-citation-line)
2376 (message-cite-reply-position 'traditional)
2377 (message-yank-prefix "> ")
2378 (message-yank-cited-prefix ">")
2379 (message-yank-empty-prefix ">")
2380 (message-citation-line-format
2381 (if b/message-cite-say-hi
2382 (concat "Hi %F,\n\n" b/message-cite-style-format)
2383 b/message-cite-style-format)))
2384 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
2385 (setq ;; message-cite-style 'message-cite-style-bandali
2386 message-kill-buffer-on-exit t
2387 message-send-mail-function 'message-send-mail-with-sendmail
2388 message-sendmail-envelope-from 'header
2389 message-subscribed-address-functions
2390 '(gnus-find-subscribed-addresses)
2391 message-dont-reply-to-names
2392 "\\(\\(\\(amin\\|mab\\)@shemshak\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|\\(a?bandali@\\(csclub\\.\\)?uwaterloo\\.ca\\)\\)")
2393 (require 'company-ebdb)
2394 :hook (;; (message-setup . mml-secure-message-sign-pgpmime)
2395 (message-mode . flyspell-mode)
2396 (message-mode . (lambda ()
2397 ;; (setq fill-column 65
2398 ;; message-fill-column 65)
2399 (make-local-variable 'company-idle-delay)
2400 (setq company-idle-delay 0.2))))
2402 ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
2403 ;; (message-header-to ((t (:foreground "#111" :weight normal))))
2404 ;; (message-header-cc ((t (:foreground "#333" :weight normal))))
2406 (message-elide-ellipsis "[...]\n"))
2410 (use-feature mml-sec
2412 (mml-secure-openpgp-encrypt-to-self t)
2413 (mml-secure-openpgp-sign-with-sender t))
2415 (use-feature footnote
2418 ;; (setq footnote-start-tag ""
2419 ;; footnote-end-tag ""
2420 ;; footnote-style 'unicode)
2422 (:map message-mode-map
2423 :prefix-map b/footnote-prefix-map
2425 ("a" . footnote-add-footnote)
2426 ("b" . footnote-back-to-message)
2427 ("c" . footnote-cycle-style)
2428 ("d" . footnote-delete-footnote)
2429 ("g" . footnote-goto-footnote)
2430 ("r" . footnote-renumber-footnotes)
2431 ("s" . footnote-set-style)))
2436 :bind (:map gnus-group-mode-map ("e" . ebdb))
2438 (setq ebdb-sources (b/var "ebdb"))
2439 (with-eval-after-load 'swiper
2440 (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t)))
2442 (use-feature ebdb-com
2445 ;; (use-package ebdb-complete
2448 ;; (ebdb-complete-enable))
2450 (use-package company-ebdb
2452 (defun company-ebdb--post-complete (_) nil))
2454 (use-feature ebdb-gnus
2458 (ebdb-gnus-window-size 0.3))
2460 (use-feature ebdb-mua
2463 :custom (ebdb-mua-pop-up t))
2465 ;; (use-package ebdb-message
2468 ;; (use-package ebdb-vcard
2471 (use-package message-x)
2474 (use-package message-x
2476 (message-x-completion-alist
2478 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address)
2481 (quote message-newgroups-header-regexp))
2482 message-newgroups-header-regexp message-newsgroups-header-regexp)
2483 . message-expand-group))))))
2486 (use-package gnus-harvest
2487 :commands gnus-harvest-install
2490 (if (featurep 'message-x)
2491 (gnus-harvest-install 'message-x)
2492 (gnus-harvest-install))))
2494 (use-feature gnus-article-treat-patch
2499 ;; note: be sure to customize faces with `:foreground "white"' when
2500 ;; using a theme with a white/light background :)
2501 (setq ft/gnus-article-patch-conditions
2502 '("^@@ -[0-9]+,[0-9]+ \\+[0-9]+,[0-9]+ @@")))
2505 ;;; IRC (with ERC and ZNC)
2508 :bind (("C-c b e" . erc-switch-to-buffer)
2510 ("M-a" . erc-track-switch-buffer))
2512 (erc-join-buffer 'bury)
2513 (erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
2514 (erc-nick "bandali")
2516 (erc-rename-buffers t)
2517 (erc-server-reconnect-attempts 5)
2518 (erc-server-reconnect-timeout 3)
2520 (defun erc-cmd-OPME ()
2521 "Request chanserv to op me."
2522 (erc-message "PRIVMSG"
2523 (format "chanserv op %s %s"
2524 (erc-default-target)
2525 (erc-current-nick)) nil))
2526 (defun erc-cmd-DEOPME ()
2527 "Deop myself from current channel."
2528 (erc-cmd-DEOP (format "%s" (erc-current-nick))))
2529 (add-to-list 'erc-modules 'keep-place)
2530 (add-to-list 'erc-modules 'notifications)
2531 (add-to-list 'erc-modules 'spelling)
2532 (add-to-list 'erc-modules 'scrolltoplace)
2533 (erc-update-modules))
2535 (use-feature erc-fill
2538 (erc-fill-column 77)
2539 (erc-fill-function 'erc-fill-static)
2540 (erc-fill-static-center 18))
2542 (use-feature erc-pcomplete
2545 (erc-pcomplete-nick-postfix ","))
2547 (use-feature erc-track
2549 :bind (("C-c a e t d" . erc-track-disable)
2550 ("C-c a e t e" . erc-track-enable))
2552 (erc-track-enable-keybindings nil)
2553 (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT"
2554 "324" "329" "332" "333" "353" "477"))
2555 (erc-track-position-in-mode-line t)
2556 (erc-track-priority-faces-only 'all)
2557 (erc-track-shorten-function nil))
2559 (use-package erc-hl-nicks
2562 (use-package erc-scrolltoplace
2566 :straight (:host nil :repo "https://git.shemshak.org/amin/znc.el")
2567 :bind (("C-c a e e" . znc-erc)
2568 ("C-c a e a" . znc-all))
2570 (let ((pwd (let ((auth (auth-source-search :host "znca")))
2572 ((null auth) (error "Couldn't find znca's authinfo"))
2573 (t (funcall (plist-get (car auth) :secret)))))))
2575 `(("znc.shemshak.org" 1337 t
2576 ((freenode "amin/freenode" ,pwd)))
2577 ("znc.shemshak.org" 1337 t
2578 ((moznet "amin/moznet" ,pwd)))
2579 ("znc.shemshak.org" 1337 t
2580 ((oftc "amin/oftc" ,pwd)))))))
2583 ;;; Post initialization
2585 (message "Loading %s...done (%.3fs)" user-init-file
2586 (float-time (time-subtract (current-time)
2587 b/before-user-init-time)))
2589 ;;; init.el ends here