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
402 (display-time-default-load-average nil
)
403 (display-time-format "%a %b %-e, %-l:%M%P"))
409 (display-battery-mode)
411 (battery-mode-line-format " %p%% %t"))
417 ;; (fringe-mode '(3 . 1))
423 ;; enable winner-mode (C-h f winner-mode RET)
428 ;; don't display *compilation* buffer on success. based on
429 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
430 ;; instead of the now obsolete `flet'.
431 (defun b/compilation-finish-function
(buffer outstr
)
432 (unless (string-match "finished" outstr
)
433 (switch-to-buffer-other-window buffer
))
436 (setq compilation-finish-functions
#'b
/compilation-finish-function
)
440 (defadvice compilation-start
441 (around inhibit-display
442 (command &optional mode name-function highlight-regexp
))
443 (if (not (string-match "^\\(find\\|grep\\)" command
))
444 (cl-letf (((symbol-function 'display-buffer
) #'ignore
))
445 (save-window-excursion ad-do-it
))
447 (ad-activate 'compilation-start
))
451 ;; allow scrolling in Isearch
452 (isearch-allow-scroll t
)
453 ;; search for non-ASCII characters: i’d like non-ASCII characters such
454 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
455 ;; counterpart. shoutout to
456 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
457 (search-default-mode #'char-fold-to-regexp
))
459 ;; uncomment to extend the above behaviour to query-replace
463 (replace-char-fold t
)))
466 :bind
("C-x v C-=" . vc-ediff
))
469 :config
(add-hook 'ediff-after-quit-hook-internal
'winner-undo
)
470 :custom
((ediff-window-setup-function 'ediff-setup-windows-plain
)
471 (ediff-split-window-function 'split-window-horizontally
)))
473 (use-feature face-remap
475 ;; gentler font resizing
476 (text-scale-mode-step 1.05))
481 (setq mouse-wheel-scroll-amount
'(1 ((shift) .
1)) ; one line at a time
482 mouse-wheel-progressive-speed nil
; don't accelerate scrolling
483 mouse-wheel-follow-mouse t
)) ; scroll window under mouse
485 (use-feature pixel-scroll
487 :config
(pixel-scroll-mode 1))
489 (use-feature epg-config
491 ((epg-gpg-program (executable-find "gpg"))))
493 (use-feature auth-source
495 (auth-sources '("~/.authinfo.gpg"))
496 (authinfo-hidden (regexp-opt '("password" "client-secret" "token"))))
504 ("C-c e b" . eval-buffer
)
505 ("C-c e e" . eval-last-sexp
)
506 ("C-c e r" . eval-region
)
508 ("C-c e i" . emacs-init-time
)
509 ("C-c e u" . emacs-uptime
)
510 ("C-c e v" . emacs-version
)
512 ("C-c F m" . make-frame-command
)
513 ("C-c F d" . delete-frame
)
514 ("C-c F D" . server-edit
)
516 ("C-S-h C" . describe-char
)
517 ("C-S-h F" . describe-face
)
519 ("C-x k" . kill-this-buffer
)
520 ("C-x K" . kill-buffer
)
521 ("C-x s" . save-buffer
)
522 ("C-x S" . save-some-buffers
)
524 :map emacs-lisp-mode-map
525 ("<C-return>" . b
/add-elisp-section
))
527 (when (display-graphic-p)
528 (unbind-key "C-z" global-map
))
531 ;; for back and forward mouse keys
532 ("<XF86Back>" . previous-buffer
)
533 ("<mouse-8>" . previous-buffer
)
534 ("<drag-mouse-8>" . previous-buffer
)
535 ("<XF86Forward>" . next-buffer
)
536 ("<mouse-9>" . next-buffer
)
537 ("<drag-mouse-9>" . next-buffer
)
538 ("<drag-mouse-2>" . kill-this-buffer
)
539 ("<drag-mouse-3>" . ivy-switch-buffer
))
542 :prefix-map b
/straight-prefix-map
544 ("u" . straight-use-package
)
545 ("f" . straight-freeze-versions
)
546 ("t" . straight-thaw-versions
)
547 ("P" . straight-prune-build
)
548 ("g" . straight-get-recipe
)
549 ("r" . b
/reload-init
)
550 ;; M-x ^straight-.*-all$
551 ("a c" . straight-check-all
)
552 ("a f" . straight-fetch-all
)
553 ("a m" . straight-merge-all
)
554 ("a n" . straight-normalize-all
)
555 ("a F" . straight-pull-all
)
556 ("a P" . straight-push-all
)
557 ("a r" . straight-rebuild-all
)
558 ;; M-x ^straight-.*-package$
559 ("p c" . straight-check-package
)
560 ("p f" . straight-fetch-package
)
561 ("p m" . straight-merge-package
)
562 ("p n" . straight-normalize-package
)
563 ("p F" . straight-pull-package
)
564 ("p P" . straight-push-package
)
565 ("p r" . straight-rebuild-package
))
568 ;;; Essential packages
574 ;; make class name the buffer name, truncating beyond 60 characters
575 (defun b/exwm-rename-buffer
()
577 (exwm-workspace-rename-buffer
578 (concat exwm-class-name
":"
579 (if (<= (length exwm-title
) 60) exwm-title
580 (concat (substring exwm-title
0 59) "...")))))
583 :hook
((exwm-update-class . b
/exwm-rename-buffer
)
584 (exwm-update-title . b
/exwm-rename-buffer
)))
586 (use-feature exwm-config
589 :hook
(exwm-init . exwm-config--fix
/ido-buffer-window-other-frame
))
591 (use-feature exwm-input
595 (defun b/exwm-ws-prev-index
()
596 "Return the index for the previous EXWM workspace, wrapping
598 (if (= exwm-workspace-current-index
0)
599 (1- exwm-workspace-number
)
600 (1- exwm-workspace-current-index
)))
602 (defun b/exwm-ws-next-index
()
603 "Return the index for the next EXWM workspace, wrapping
605 (if (= exwm-workspace-current-index
606 (1- exwm-workspace-number
))
608 (1+ exwm-workspace-current-index
)))
610 ;; shorten 'C-c C-q' to 'C-q'
611 (define-key exwm-mode-map
[?\C-q
] #'exwm-input-send-next-key
)
613 (setq exwm-workspace-number
4
614 exwm-input-global-keys
615 `(([?\s-R
] . exwm-reset
)
616 ([?\s-
\\] . exwm-workspace-switch
)
618 ([?\S-\s-\s
] .
(lambda (command)
620 (list (read-shell-command "➜ ")))
621 (start-process-shell-command
622 command nil command
)))
623 ([s-return
] .
(lambda ()
625 (start-process "" nil
"urxvt")))
626 ([?\C-\s-\s
] . counsel-linux-app
)
627 ([?\M-\s-\s
] .
(lambda ()
629 (start-process-shell-command
630 "rofi-pass" nil
"rofi-pass")))
631 ([?\s-h
] . windmove-left
)
632 ([?\s-j
] . windmove-down
)
633 ([?\s-k
] . windmove-up
)
634 ([?\s-l
] . windmove-right
)
635 ([?\s-H
] . windmove-swap-states-left
)
636 ([?\s-J
] . windmove-swap-states-down
)
637 ([?\s-K
] . windmove-swap-states-up
)
638 ([?\s-L
] . windmove-swap-states-right
)
639 ([?\M-\s-h
] . shrink-window-horizontally
)
640 ([?\M-\s-l
] . enlarge-window-horizontally
)
641 ([?\M-\s-k
] . shrink-window
)
642 ([?\M-\s-j
] . enlarge-window
)
643 ([?\s-\
[] .
(lambda ()
645 (exwm-workspace-switch-create
646 (b/exwm-ws-prev-index
))))
647 ([?\s-\
]] .
(lambda ()
649 (exwm-workspace-switch-create
650 (b/exwm-ws-next-index
))))
651 ([?\s-
{] .
(lambda ()
653 (exwm-workspace-move-window
654 (b/exwm-ws-prev-index
))))
655 ([?\s-
}] .
(lambda ()
657 (exwm-workspace-move-window
658 (b/exwm-ws-next-index
))))
659 ,@(mapcar (lambda (i)
660 `(,(kbd (format "s-%d" i
)) .
663 (exwm-workspace-switch-create ,i
))))
664 (number-sequence 0 (1- exwm-workspace-number
)))
665 ([?\s-t
] . exwm-floating-toggle-floating
)
666 ([?\s-f
] . exwm-layout-toggle-fullscreen
)
667 ([?\s-W
] .
(lambda ()
669 (kill-buffer (current-buffer))))
670 ([?\s-Q
] .
(lambda ()
672 (exwm-manage--kill-client)))
673 ([?\s-
\'] .
(lambda ()
675 (start-process-shell-command
676 "rofi-light" nil
"rofi-light")))
680 (start-process "" nil "pamixer" "--toggle-mute")))
681 ([XF86AudioLowerVolume] .
685 "" nil "pamixer" "--allow-boost" "--decrease" "5")))
686 ([XF86AudioRaiseVolume] .
690 "" nil "pamixer" "--allow-boost" "--increase" "5")))
694 (start-process "" nil "mpc" "toggle")))
698 (start-process "" nil "mpc" "prev")))
702 (start-process "" nil "mpc" "next")))
706 (start-process "" nil "dm-tool" "lock")))
707 ([\s-XF86Back] . previous-buffer)
708 ([\s-XF86Forward] . next-buffer)))
710 ;; Line-editing shortcuts
711 (setq exwm-input-simulation-keys
716 ([?\M-f] . [C-right])
724 ([?\C-k] . [S-end ?\C-x])
731 ([?\M-d] . [C-S-right ?\C-x])
732 ([?\M-\d] . [C-S-left ?\C-x])
739 ([?\C-g] . [escape]))))
741 (use-feature exwm-manage
745 (exwm-manage-finish . (lambda ()
746 (when exwm-class-name
748 ((string= exwm-class-name "Abrowser")
749 (exwm-input-set-local-simulation-keys
750 `(,@exwm-input-simulation-keys
751 ([?\C-\S-d] . [?\C-d]))))
752 ((string= exwm-class-name "URxvt")
753 (exwm-input-set-local-simulation-keys
754 '(([?\C-c ?\C-c] . [?\C-c])
755 ([?\C-c ?\C-u] . [?\C-u]))))
756 ((string= exwm-class-name "Zathura")
757 (exwm-input-set-local-simulation-keys
759 ([?\C-n] . [C-down])))))))))
761 (use-feature exwm-randr
767 (exwm-randr-workspace-monitor-plist '(1 "VGA-1"))
769 (exwm-randr-screen-change . (lambda ()
777 (start-process-shell-command
778 "xrandr" nil xrandr)))))
780 (use-feature exwm-systemtray
784 (exwm-systemtray-enable))
786 (use-feature exwm-workspace)
788 (use-package exwm-edit
792 ;; use the org-plus-contrib package to get the whole deal
793 (use-package org-plus-contrib)
798 (setq org-src-tab-acts-natively t
799 org-src-preserve-indentation nil
800 org-edit-src-content-indentation 0
801 org-link-email-description-format "Email %c: %s" ; %.30s
802 org-highlight-latex-and-related '(entities)
803 org-use-speed-commands t
804 org-startup-folded 'content
805 org-catch-invisible-edits 'show-and-error
807 (when (version< org-version "9.3")
808 (setq org-email-link-description-format
809 org-link-email-description-format))
810 (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t)
811 (add-to-list 'org-modules 'org-habit)
813 (("C-c a o a" . org-agenda)
815 ("M-L" . org-insert-last-stored-link)
816 ("M-O" . org-toggle-link-display))
817 :hook ((org-mode . org-indent-mode)
818 (org-mode . auto-fill-mode)
819 (org-mode . flyspell-mode))
821 (org-pretty-entities t)
822 (org-agenda-files '("~/usr/org/todos/personal.org"
823 "~/usr/org/todos/habits.org"
824 "~/src/git/masters-thesis/todo.org"))
825 (org-agenda-start-on-weekday 0)
826 (org-agenda-time-leading-zero t)
827 (org-habit-graph-column 44)
828 (org-latex-packages-alist '(("" "listings") ("" "color")))
830 '(org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21"))))
831 '(org-block ((t (:background "#1d1f21"))))
832 '(org-latex-and-related ((t (:foreground "#b294bb")))))
834 (use-feature ox-latex
837 (setq org-latex-listings 'listings
838 ;; org-latex-prefer-user-labels t
840 (add-to-list 'org-latex-classes
841 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
842 ("\\section{%s}" . "\\section*{%s}")
843 ("\\subsection{%s}" . "\\subsection*{%s}")
844 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
845 ("\\paragraph{%s}" . "\\paragraph*{%s}")
846 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
848 (require 'ox-beamer))
850 (use-feature ox-extra
852 (ox-extras-activate '(latex-header-blocks ignore-headlines)))
854 ;; asynchronous tangle, using emacs-async to asynchronously tangle an
855 ;; org file. closely inspired by
856 ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
857 (with-eval-after-load 'org
858 (defvar b/show-async-tangle-results nil
859 "Keep *emacs* async buffers around for later inspection.")
861 (defvar b/show-async-tangle-time nil
862 "Show the time spent tangling the file.")
864 (defun b/async-babel-tangle ()
865 "Tangle org file asynchronously."
867 (let* ((file-tangle-start-time (current-time))
868 (file (buffer-file-name))
869 (file-nodir (file-name-nondirectory file))
870 ;; (async-quiet-switch "-q")
871 (file-noext (file-name-sans-extension file)))
875 (org-babel-tangle-file ,file))
876 (unless b/show-async-tangle-results
879 (message "Tangled %s%s"
881 (if b/show-async-tangle-time
883 (float-time (time-subtract (current-time)
884 ',file-tangle-start-time)))
886 (message "Tangling %s failed" ,file-nodir))))))))
889 'safe-local-variable-values
890 '(eval add-hook 'after-save-hook #'b/async-babel-tangle 'append 'local))
892 ;; *the* right way to do git
895 :bind (("C-x g" . magit-status)
896 ("C-c g g" . magit-status)
897 ("C-c g b" . magit-blame-addition)
898 ("C-c g l" . magit-log-buffer-file))
900 (magit-add-section-hook 'magit-status-sections-hook
901 'magit-insert-modules
902 'magit-insert-stashes
904 ;; (magit-add-section-hook 'magit-status-sections-hook
905 ;; 'magit-insert-ignored-files
906 ;; 'magit-insert-untracked-files
908 (setq magit-repository-directories '(("~/" . 0)
910 (nconc magit-section-initial-visibility-alist
911 '(([unpulled status] . show)
912 ([unpushed status] . show)))
914 (magit-diff-refine-hunk t)
915 (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1)
916 :custom-face (magit-diff-file-heading ((t (:weight normal)))))
918 ;; recently opened files
922 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
924 (recentf-max-saved-items 2000))
926 ;; smart M-x enhancement (needed by counsel for history)
932 (:map ivy-minibuffer-map
933 ([escape] . keyboard-escape-quit)
934 ([S-up] . ivy-previous-history-element)
935 ([S-down] . ivy-next-history-element)
936 ("DEL" . ivy-backward-delete-char))
940 ivy-use-virtual-buffers t
941 ivy-virtual-abbreviate 'abbreviate
942 ivy-count-format "%d/%d ")
944 (defvar b/ivy-ignore-buffer-modes '(magit-mode erc-mode dired-mode))
945 (defun b/ivy-ignore-buffer-p (str)
946 "Return non-nil if str names a buffer with a major mode
947 derived from one of `b/ivy-ignore-buffer-modes'.
949 This function is intended for use with `ivy-ignore-buffers'."
950 (let* ((buf (get-buffer str))
951 (mode (and buf (buffer-local-value 'major-mode buf))))
953 (apply #'provided-mode-derived-p mode b/ivy-ignore-buffer-modes))))
954 (add-to-list 'ivy-ignore-buffers 'b/ivy-ignore-buffer-p)
958 ;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold))))
959 ;; (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold))))
960 ;; (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold))))
965 :bind (("C-s" . swiper-isearch)
967 ("C-S-s" . isearch-forward)))
971 :bind (([remap execute-extended-command] . counsel-M-x)
972 ([remap find-file] . counsel-find-file)
973 ("C-c b b" . ivy-switch-buffer)
974 ("C-c f ." . counsel-find-file)
975 ("C-c f l" . counsel-find-library)
976 ("C-c f r" . counsel-recentf)
977 ("C-c x" . counsel-M-x)
978 :map minibuffer-local-map
979 ("C-r" . counsel-minibuffer-history))
982 (defalias 'locate #'counsel-locate))
986 :commands (helm-M-x helm-mini helm-resume)
987 :bind (("M-x" . helm-M-x)
988 ("M-y" . helm-show-kill-ring)
989 ("C-x b" . helm-mini)
990 ("C-x C-b" . helm-buffers-list)
991 ("C-x C-f" . helm-find-files)
992 ("C-h r" . helm-info-emacs)
993 ("C-s-r" . helm-resume)
995 ("<tab>" . helm-execute-persistent-action)
996 ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals
997 ("C-z" . helm-select-action)) ; List actions
998 :config (helm-mode 1)))
1003 :bind ("C-c a s e" . eshell)
1005 (eval-when-compile (defvar eshell-prompt-regexp))
1006 (defun b/eshell-quit-or-delete-char (arg)
1008 (if (and (eolp) (looking-back eshell-prompt-regexp nil))
1009 (eshell-life-is-too-much)
1012 (defun b/eshell-clear ()
1014 (let ((inhibit-read-only t))
1016 (eshell-send-input))
1018 (defun b/eshell-setup ()
1019 (make-local-variable 'company-idle-delay)
1020 (defvar company-idle-delay)
1021 (setq company-idle-delay nil)
1022 (bind-keys :map eshell-mode-map
1023 ("C-d" . b/eshell-quit-or-delete-char)
1024 ("C-S-l" . b/eshell-clear)
1025 ("M-r" . counsel-esh-history)
1026 ([tab] . company-complete)))
1028 :hook (eshell-mode . b/eshell-setup)
1030 (eshell-hist-ignoredups t)
1031 (eshell-input-filter 'eshell-input-filter-initial-space))
1033 (use-feature ibuffer
1035 (("C-x C-b" . ibuffer)
1036 :map ibuffer-mode-map
1037 ("P" . ibuffer-backward-filter-group)
1038 ("N" . ibuffer-forward-filter-group)
1039 ("M-p" . ibuffer-do-print)
1040 ("M-n" . ibuffer-do-shell-command-pipe-replace))
1042 ;; Use human readable Size column instead of original one
1043 (define-ibuffer-column size-h
1044 (:name "Size" :inline t)
1046 ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0)))
1047 ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0)))
1048 ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0)))
1049 (t (format "%8d" (buffer-size)))))
1051 (ibuffer-saved-filter-groups
1053 ("dired" (mode . dired-mode))
1054 ("org" (mode . org-mode))
1057 (mode . gnus-group-mode)
1058 (mode . gnus-summary-mode)
1059 (mode . gnus-article-mode)
1060 ;; not really, but...
1061 (mode . message-mode)))
1070 (mode . eshell-mode)
1072 (mode . term-mode)))
1075 (mode . python-mode)
1079 (mode . emacs-lisp-mode)
1080 (mode . scheme-mode)
1081 (mode . haskell-mode)
1084 (mode . alloy-mode)))
1087 (mode . bibtex-mode)
1088 (mode . latex-mode)))
1091 (name . "^\\*scratch\\*$")
1092 (name . "^\\*Messages\\*$")))
1093 ("exwm" (mode . exwm-mode))
1094 ("erc" (mode . erc-mode)))))
1096 '((mark modified read-only locked " "
1097 (name 72 72 :left :elide)
1099 (size-h 9 -1 :right)
1101 (mode 16 16 :left :elide)
1102 " " filename-and-process)
1106 :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
1108 (use-feature outline
1110 :hook (prog-mode . outline-minor-mode)
1113 outline-minor-mode-map
1114 ("<s-tab>" . outline-toggle-children)
1115 ("M-p" . outline-previous-visible-heading)
1116 ("M-n" . outline-next-visible-heading)
1117 :prefix-map b/outline-prefix-map
1119 ("TAB" . outline-toggle-children)
1120 ("a" . outline-hide-body)
1121 ("H" . outline-hide-body)
1122 ("S" . outline-show-all)
1123 ("h" . outline-hide-subtree)
1124 ("s" . outline-show-subtree)))
1126 (use-feature ls-lisp
1127 :custom (ls-lisp-dirs-first t))
1131 (setq dired-dwim-target t
1132 dired-listing-switches "-alh"
1133 ls-lisp-use-insert-directory-program nil)
1135 ;; easily diff 2 marked files
1136 ;; https://oremacs.com/2017/03/18/dired-ediff/
1137 (defun dired-ediff-files ()
1139 (require 'dired-aux)
1140 (defvar ediff-after-quit-hook-internal)
1141 (let ((files (dired-get-marked-files))
1142 (wnd (current-window-configuration)))
1143 (if (<= (length files) 2)
1144 (let ((file1 (car files))
1145 (file2 (if (cdr files)
1149 (dired-dwim-target-directory)))))
1150 (if (file-newer-than-file-p file1 file2)
1151 (ediff-files file2 file1)
1152 (ediff-files file1 file2))
1153 (add-hook 'ediff-after-quit-hook-internal
1155 (setq ediff-after-quit-hook-internal nil)
1156 (set-window-configuration wnd))))
1157 (error "no more than 2 files should be marked"))))
1160 (setq dired-guess-shell-alist-user
1161 '(("\\.pdf\\'" "evince" "zathura" "okular")
1162 ("\\.doc\\'" "libreoffice")
1163 ("\\.docx\\'" "libreoffice")
1164 ("\\.ppt\\'" "libreoffice")
1165 ("\\.pptx\\'" "libreoffice")
1166 ("\\.xls\\'" "libreoffice")
1167 ("\\.xlsx\\'" "libreoffice")
1168 ("\\.flac\\'" "mpv")))
1169 :bind (:map dired-mode-map
1170 ("b" . dired-up-directory)
1171 ("e" . dired-ediff-files)
1172 ("E" . dired-toggle-read-only)
1173 ("\\" . dired-hide-details-mode)
1176 (b/dired-start-process "zathura"))))
1177 :hook (dired-mode . dired-hide-details-mode))
1181 (temp-buffer-resize-mode)
1182 (setq help-window-select t))
1186 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
1187 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
1188 (add-to-list 'tramp-default-proxies-alist
1189 (list (regexp-quote (system-name)) nil nil)))
1192 :config (dash-enable-font-lock))
1194 (use-feature doc-view
1195 :bind (:map doc-view-mode-map
1196 ("M-RET" . image-previous-line)))
1201 ;; highlight uncommitted changes in the left fringe
1202 (use-package diff-hl
1205 (setq diff-hl-draw-borders nil)
1206 (global-diff-hl-mode)
1207 :hook (magit-post-refresh . diff-hl-magit-post-refresh))
1209 ;; display Lisp objects at point in the echo area
1211 :when (version< "25" emacs-version)
1212 :config (global-eldoc-mode))
1214 ;; highlight matching parens
1217 :config (show-paren-mode))
1219 (use-feature elec-pair
1221 :config (electric-pair-mode))
1224 :config (column-number-mode)
1226 ;; Save what I copy into clipboard from other applications into Emacs'
1227 ;; kill-ring, which would allow me to still be able to easily access
1228 ;; it in case I kill (cut or copy) something else inside Emacs before
1229 ;; yanking (pasting) what I'd originally intended to.
1230 (save-interprogram-paste-before-kill t))
1232 ;; save minibuffer history
1233 (use-feature savehist
1237 (add-to-list 'savehist-additional-variables 'kill-ring))
1239 ;; automatically save place in files
1240 (use-feature saveplace
1241 :when (version< "25" emacs-version)
1242 :config (save-place-mode))
1244 (use-feature prog-mode
1245 :config (global-prettify-symbols-mode)
1246 (defun indicate-buffer-boundaries-left ()
1247 (setq indicate-buffer-boundaries 'left))
1248 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
1250 (use-feature text-mode
1251 :hook (text-mode . indicate-buffer-boundaries-left))
1253 (use-feature conf-mode
1256 (use-feature sh-mode
1259 (use-package company
1262 (:map company-active-map
1263 ([tab] . company-complete-common-or-cycle)
1264 ([escape] . company-abort))
1266 (company-minimum-prefix-length 1)
1267 (company-selection-wrap-around t)
1268 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
1269 (company-dabbrev-downcase nil)
1270 (company-dabbrev-ignore-case nil)
1272 (global-company-mode t))
1274 (use-package flycheck
1276 :hook (prog-mode . flycheck-mode)
1278 (:map flycheck-mode-map
1279 ("M-P" . flycheck-previous-error)
1280 ("M-N" . flycheck-next-error))
1282 ;; Use the load-path from running Emacs when checking elisp files
1283 (setq flycheck-emacs-lisp-load-path 'inherit)
1285 ;; Only flycheck when I actually save the buffer
1286 (setq flycheck-check-syntax-automatically '(mode-enabled save))
1287 :custom (flycheck-mode-line-prefix "flyc"))
1289 (use-feature flyspell)
1291 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
1295 ;; ’ can be part of a word
1296 (setq ispell-local-dictionary-alist
1297 `((nil "[[:alpha:]]" "[^[:alpha:]]"
1298 "['\x2019]" nil ("-B") nil utf-8))
1299 ispell-program-name (executable-find "hunspell"))
1300 ;; don't send ’ to the subprocess
1301 (defun endless/replace-apostrophe (args)
1302 (cons (replace-regexp-in-string
1305 (advice-add #'ispell-send-string :filter-args
1306 #'endless/replace-apostrophe)
1308 ;; convert ' back to ’ from the subprocess
1309 (defun endless/replace-quote (args)
1310 (if (not (derived-mode-p 'org-mode))
1312 (cons (replace-regexp-in-string
1315 (advice-add #'ispell-parse-output :filter-args
1316 #'endless/replace-quote))
1319 :hook (text-mode . abbrev-mode))
1322 ;;; Programming modes
1324 (use-feature lisp-mode
1326 (defun indent-spaces-mode ()
1327 (setq indent-tabs-mode nil))
1328 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
1331 :hook (emacs-lisp-mode . reveal-mode))
1333 (use-feature elisp-mode)
1335 (use-package alloy-mode
1336 :straight (:host github :repo "dwwmmn/alloy-mode")
1338 :config (setq alloy-basic-offset 2)
1339 :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil))))
1341 (eval-when-compile (defvar lean-mode-map))
1342 (use-package lean-mode
1344 :bind (:map lean-mode-map
1345 ("S-SPC" . company-complete))
1347 (require 'lean-input)
1348 (setq default-input-method "Lean"
1349 lean-input-tweak-all '(lean-input-compose
1350 (lean-input-prepend "/")
1351 (lean-input-nonempty))
1352 lean-input-user-translations '(("/" "/")))
1356 (use-package proof-site ; for Coq
1357 :straight proof-general)
1359 (use-package haskell-mode
1361 (setq haskell-indentation-layout-offset 4
1362 haskell-indentation-left-offset 4
1363 flycheck-checker 'haskell-hlint
1364 flycheck-disabled-checkers '(haskell-stack-ghc haskell-ghc)))
1368 :commands dante-mode
1369 :hook (haskell-mode . dante-mode))
1371 (use-package hlint-refactor
1373 :bind (:map hlint-refactor-mode-map
1374 ("C-c l b" . hlint-refactor-refactor-buffer)
1375 ("C-c l r" . hlint-refactor-refactor-at-point))
1376 :hook (haskell-mode . hlint-refactor-mode))
1378 (use-package flycheck-haskell
1379 :after haskell-mode)
1380 ;; alternative: hs-lint https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el
1383 (use-feature sgml-mode
1385 (setq sgml-basic-offset 2))
1387 (use-feature css-mode
1389 (setq css-indent-offset 2))
1391 (use-package web-mode
1395 web-mode-code-indent-offset
1396 web-mode-css-indent-offset
1397 web-mode-markup-indent-offset))
1399 (use-package emmet-mode
1400 :after (:any web-mode css-mode sgml-mode)
1401 :bind* (("C-)" . emmet-next-edit-point)
1402 ("C-(" . emmet-prev-edit-point))
1404 (unbind-key "C-j" emmet-mode-keymap)
1405 (setq emmet-move-cursor-between-quotes t)
1406 :hook (web-mode css-mode html-mode sgml-mode))
1409 (use-package meghanada
1411 (:map meghanada-mode-map
1412 (("C-M-o" . meghanada-optimize-import)
1413 ("C-M-t" . meghanada-import-all)))
1414 :hook (java-mode . meghanada-mode)))
1417 (use-package treemacs
1418 :config (setq treemacs-never-persist t))
1420 (use-package yasnippet
1422 ;; (yas-global-mode)
1425 (use-package lsp-mode
1426 :init (setq lsp-eldoc-render-all nil
1427 lsp-highlight-symbol-at-point nil)
1432 (use-package company-lsp
1435 (setq company-lsp-cache-candidates t
1436 company-lsp-async t))
1440 (setq lsp-ui-sideline-update-mode 'point))
1442 (use-package lsp-java
1444 (add-hook 'java-mode-hook
1446 (setq-local company-backends (list 'company-lsp))))
1448 (add-hook 'java-mode-hook 'lsp-java-enable)
1449 (add-hook 'java-mode-hook 'flycheck-mode)
1450 (add-hook 'java-mode-hook 'company-mode)
1451 (add-hook 'java-mode-hook 'lsp-ui-mode))
1453 (use-package dap-mode
1459 (use-package dap-java
1462 (use-package lsp-java-treemacs
1467 :bind (:map eclim-mode-map ("S-SPC" . company-complete))
1468 :hook ((java-mode . eclim-mode)
1469 (eclim-mode . (lambda ()
1470 (make-local-variable 'company-idle-delay)
1471 (defvar company-idle-delay)
1472 ;; (setq company-idle-delay 0.7)
1473 (setq company-idle-delay nil))))
1475 (eclim-auto-save nil)
1476 ;; (eclimd-default-workspace "~/src/eclipse-workspace-exp")
1477 (eclim-executable "~/.p2/pool/plugins/org.eclim_2.8.0/bin/eclim")
1478 (eclim-eclipse-dirs '("~/usr/eclipse/dsl-2018-09/eclipse"))))
1480 (use-package geiser)
1482 (use-feature geiser-guile
1484 (setq geiser-guile-load-path "~/src/git/guix"))
1491 (font-latex-fontify-sectioning 'color)))
1493 (use-package go-mode)
1495 (use-package po-mode
1497 (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit))))
1499 (use-feature tex-mode
1502 (lambda (p) (string-match "^---?" (car p)))
1503 tex--prettify-symbols-alist)
1504 :hook ((tex-mode . auto-fill-mode)
1505 (tex-mode . flyspell-mode)))
1507 (use-package george-mode
1508 :straight (:host nil :repo "https://git.shemshak.org/amin/george-mode")
1514 (add-to-list 'custom-theme-load-path
1516 (convert-standard-filename "lisp") user-emacs-directory))
1517 (load-theme 'tangomod t)
1519 (use-package smart-mode-line
1520 :commands (sml/apply-theme)
1524 (smart-mode-line-enable))
1526 (use-package doom-modeline
1529 :hook (after-init . doom-modeline-init)
1531 (doom-modeline-buffer-file-name-style 'relative-to-project))
1533 (use-package doom-themes)
1535 (use-package solarized-theme
1538 (load-theme 'solarized-light t))
1544 (setq x-underline-at-descent-line t)
1545 (let ((line (face-attribute 'mode-line :underline)))
1546 (set-face-attribute 'mode-line nil :overline line)
1547 (set-face-attribute 'mode-line-inactive nil :overline line)
1548 (set-face-attribute 'mode-line-inactive nil :underline line)
1549 (set-face-attribute 'mode-line nil :box nil)
1550 (set-face-attribute 'mode-line-inactive nil :box nil)
1551 (set-face-attribute 'mode-line-inactive nil :background "#e1e1e1")) ; d3d7cf
1552 (moody-replace-mode-line-buffer-identification)
1553 (moody-replace-vc-mode))
1555 (use-package mini-modeline
1558 :config (mini-modeline-mode))
1560 (defvar b/org-mode-font-lock-keywords
1561 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
1562 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
1563 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
1564 (4 '(:foreground "#c5c8c6") t))) ; title
1565 "For use with the `doom-tomorrow-night' theme.")
1567 (defun b/lights-on ()
1568 "Enable my favourite light theme."
1570 (mapc #'disable-theme custom-enabled-themes)
1571 (load-theme 'tangomod t)
1572 (sml/apply-theme 'automatic)
1573 (font-lock-remove-keywords
1574 'org-mode b/org-mode-font-lock-keywords))
1576 (defun b/lights-off ()
1579 (mapc #'disable-theme custom-enabled-themes)
1580 (load-theme 'doom-one t)
1581 (sml/apply-theme 'automatic)
1582 (font-lock-add-keywords
1583 'org-mode b/org-mode-font-lock-keywords t))
1586 ("C-c t d" . b/lights-off)
1587 ("C-c t l" . b/lights-on))
1590 ;;; Emacs enhancements & auxiliary packages
1593 :config (setq Man-width 80))
1595 (use-package which-key
1598 (which-key-add-key-based-replacements
1599 ;; prefixes for global prefixes and minor modes
1603 "C-c 8 -" "typo/dashes"
1604 "C-c 8 <" "typo/left-brackets"
1605 "C-c 8 >" "typo/right-brackets"
1607 "C-x a" "abbrev/expand"
1608 "C-x r" "rectangle/register/bookmark"
1609 "C-x v" "version control"
1610 ;; prefixes for my personal bindings
1611 "C-c a" "applications"
1616 "C-c c" "compile-and-comments"
1622 "C-c m" "multiple-cursors"
1623 "C-c P" "projectile"
1624 "C-c P s" "projectile/search"
1625 "C-c P x" "projectile/execute"
1626 "C-c P 4" "projectile/other-window"
1632 ;; prefixes for major modes
1633 (which-key-add-major-mode-key-based-replacements 'message-mode
1634 "C-c f n" "footnote")
1635 (which-key-add-major-mode-key-based-replacements 'org-mode
1636 "C-c C-v" "org-babel")
1637 (which-key-add-major-mode-key-based-replacements 'web-mode
1638 "C-c C-a" "web/attributes"
1639 "C-c C-b" "web/blocks"
1641 "C-c C-e" "web/element"
1642 "C-c C-t" "web/tags")
1646 (which-key-add-column-padding 5)
1647 (which-key-max-description-length 32))
1649 (use-package crux ; results in Waiting for git... [2 times]
1651 :bind (("C-c d" . crux-duplicate-current-line-or-region)
1652 ("C-c D" . crux-duplicate-and-comment-current-line-or-region)
1653 ("C-c f C" . crux-copy-file-preserve-attributes)
1654 ("C-c f D" . crux-delete-file-and-buffer)
1655 ("C-c f R" . crux-rename-file-and-buffer)
1656 ("C-c j" . crux-top-join-line)
1657 ("C-S-j" . crux-top-join-line)))
1660 :bind (("C-a" . mwim-beginning-of-code-or-line)
1661 ("C-e" . mwim-end-of-code-or-line)
1662 ("<home>" . mwim-beginning-of-line-or-code)
1663 ("<end>" . mwim-end-of-line-or-code)))
1665 (use-package projectile
1667 :bind-keymap ("C-c P" . projectile-command-map)
1671 (defun b/projectile-mode-line-fun ()
1672 "Report project name and type in the modeline."
1673 (let ((project-name (projectile-project-name))
1674 (project-type (projectile-project-type)))
1676 projectile-mode-line-prefix
1678 (format ":%s" project-type)
1680 (setq projectile-mode-line-function 'b/projectile-mode-line-fun)
1682 (defun my-projectile-invalidate-cache (&rest _args)
1683 ;; ignore the args to `magit-checkout'
1684 (projectile-invalidate-cache nil))
1686 (eval-after-load 'magit-branch
1688 (advice-add 'magit-checkout
1689 :after #'my-projectile-invalidate-cache)
1690 (advice-add 'magit-branch-and-checkout
1691 :after #'my-projectile-invalidate-cache)))
1693 (projectile-completion-system 'ivy)
1694 (projectile-mode-line-prefix " proj"))
1696 (use-package helpful
1699 (("C-S-h c" . helpful-command)
1700 ("C-S-h f" . helpful-callable) ; helpful-function
1701 ("C-S-h v" . helpful-variable)
1702 ("C-S-h k" . helpful-key)
1703 ("C-S-h p" . helpful-at-point)))
1705 (use-package unkillable-scratch
1708 (unkillable-scratch 1)
1710 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1713 ;; | make pretty boxed quotes like this
1715 (use-package boxquote
1718 (:prefix-map b/boxquote-prefix-map
1720 ("b" . boxquote-buffer)
1721 ("B" . boxquote-insert-buffer)
1722 ("d" . boxquote-defun)
1723 ("F" . boxquote-insert-file)
1724 ("hf" . boxquote-describe-function)
1725 ("hk" . boxquote-describe-key)
1726 ("hv" . boxquote-describe-variable)
1727 ("hw" . boxquote-where-is)
1728 ("k" . boxquote-kill)
1729 ("p" . boxquote-paragraph)
1730 ("q" . boxquote-boxquote)
1731 ("r" . boxquote-region)
1732 ("s" . boxquote-shell-command)
1733 ("t" . boxquote-text)
1734 ("T" . boxquote-title)
1735 ("u" . boxquote-unbox)
1736 ("U" . boxquote-unbox-region)
1737 ("y" . boxquote-yank)
1738 ("M-q" . boxquote-fill-paragraph)
1739 ("M-w" . boxquote-kill-ring-save)))
1741 (use-package orgalist
1742 ;; http://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00007.html
1745 :hook (message-mode . orgalist-mode))
1747 ;; easily type pretty quotes & other typography, like ‘’“”-–—«»‹›
1751 (typo-global-mode 1)
1752 :hook (((text-mode erc-mode web-mode) . typo-mode)
1753 (tex-mode . (lambda ()(typo-mode -1)))))
1755 ;; highlight TODOs in buffers
1756 (use-package hl-todo
1759 (global-hl-todo-mode))
1761 (use-package shrink-path
1765 (defvar user-@-host (concat (user-login-name) "@" (system-name) ":"))
1766 (defun +eshell/prompt ()
1767 (concat (propertize user-@-host 'face 'default)
1768 (propertize (abbreviate-file-name default-directory)
1769 'face 'font-lock-comment-face)
1770 (propertize "\n" 'face 'default)
1771 (if (= (user-uid) 0)
1772 (propertize "#" 'face 'red)
1773 (propertize "$" 'face 'default))
1774 (propertize " " 'face 'default)))
1775 (setq eshell-prompt-regexp "\\(.*\n\\)*[$#] "
1776 eshell-prompt-function #'+eshell/prompt))
1778 (use-package eshell-up
1780 :commands eshell-up)
1782 (use-package multi-term
1785 :bind (("C-c a s m m" . multi-term)
1786 ("C-c a s m d" . multi-term-dedicated-toggle)
1787 ("C-c a s m p" . multi-term-prev)
1788 ("C-c a s m n" . multi-term-next)
1790 ("C-c C-j" . term-char-mode))
1792 (setq multi-term-program "screen"
1793 multi-term-program-switches (concat "-c"
1794 (getenv "XDG_CONFIG_HOME")
1796 ;; TODO: add separate bindings for connecting to existing
1797 ;; session vs. always creating a new one
1798 multi-term-dedicated-select-after-open-p t
1799 multi-term-dedicated-window-height 20
1800 multi-term-dedicated-max-window-height 30
1802 '(("C-c C-c" . term-interrupt-subjob)
1803 ("C-c C-e" . term-send-esc)
1804 ("C-c C-j" . term-line-mode)
1806 ;; ("C-y" . term-paste)
1807 ("C-y" . term-send-raw)
1808 ("M-f" . term-send-forward-word)
1809 ("M-b" . term-send-backward-word)
1810 ("M-p" . term-send-up)
1811 ("M-n" . term-send-down)
1812 ("M-j" . term-send-raw-meta)
1813 ("M-y" . term-send-raw-meta)
1814 ("M-/" . term-send-raw-meta)
1815 ("M-0" . term-send-raw-meta)
1816 ("M-1" . term-send-raw-meta)
1817 ("M-2" . term-send-raw-meta)
1818 ("M-3" . term-send-raw-meta)
1819 ("M-4" . term-send-raw-meta)
1820 ("M-5" . term-send-raw-meta)
1821 ("M-6" . term-send-raw-meta)
1822 ("M-7" . term-send-raw-meta)
1823 ("M-8" . term-send-raw-meta)
1824 ("M-9" . term-send-raw-meta)
1825 ("<C-backspace>" . term-send-backward-kill-word)
1826 ("<M-DEL>" . term-send-backward-kill-word)
1827 ("M-d" . term-send-delete-word)
1828 ("M-," . term-send-raw)
1829 ("M-." . comint-dynamic-complete))
1830 term-unbind-key-alist
1831 '("C-z" "C-x" "C-c" "C-h"
1835 (use-package page-break-lines
1838 (page-break-lines-max-width fill-column)
1840 (global-page-break-lines-mode))
1842 (use-package expand-region
1843 :bind ("C-=" . er/expand-region))
1845 (use-package multiple-cursors
1847 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
1848 (:prefix-map b/mc-prefix-map
1850 ("c" . mc/edit-lines)
1851 ("n" . mc/mark-next-like-this)
1852 ("p" . mc/mark-previous-like-this)
1853 ("a" . mc/mark-all-like-this))))
1859 (use-package yasnippet
1862 (defconst yas-verbosity-cur yas-verbosity)
1863 (setq yas-verbosity 2)
1864 (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
1866 (setq yas-verbosity yas-verbosity-cur)
1868 (defun b/yas--maybe-expand-key-filter (cmd)
1869 (when (and (yas--maybe-expand-key-filter cmd)
1870 (not (bound-and-true-p git-commit-mode)))
1872 (defconst b/yas-maybe-expand
1873 '(menu-item "" yas-expand :filter b/yas--maybe-expand-key-filter))
1874 (define-key yas-minor-mode-map
1875 (kbd "SPC") b/yas-maybe-expand)
1879 (use-package debbugs
1882 :repo "emacs-straight/debbugs"
1883 :files (:defaults "Debbugs.wsdl")))
1885 (use-package org-ref
1887 (b/setq-every '("~/usr/org/references.bib")
1888 reftex-default-bibliography
1889 org-ref-default-bibliography)
1891 org-ref-bibliography-notes "~/usr/org/notes.org"
1892 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1896 :init (setq alert-default-style 'notifications))
1898 ;; (use-package fill-column-indicator)
1900 (use-package emojify
1902 :hook (erc-mode . emojify-mode))
1906 (("C-c w <right>" . split-window-right)
1907 ("C-c w <down>" . split-window-below)
1908 ("C-c w s l" . split-window-right)
1909 ("C-c w s j" . split-window-below)
1910 ("C-c w q" . quit-window))
1912 (split-width-threshold 150))
1914 (use-feature windmove
1917 (("C-c w h" . windmove-left)
1918 ("C-c w j" . windmove-down)
1919 ("C-c w k" . windmove-up)
1920 ("C-c w l" . windmove-right)
1921 ("C-c w H" . windmove-swap-states-left)
1922 ("C-c w J" . windmove-swap-states-down)
1923 ("C-c w K" . windmove-swap-states-up)
1924 ("C-c w L" . windmove-swap-states-right)))
1928 :bind ("C-c a p" . pass)
1929 :hook (pass-mode . View-exit))
1931 (use-package pdf-tools
1933 :bind (:map pdf-view-mode-map
1934 ("<C-XF86Back>" . pdf-history-backward)
1935 ("<mouse-8>" . pdf-history-backward)
1936 ("<drag-mouse-8>" . pdf-history-backward)
1937 ("<C-XF86Forward>" . pdf-history-forward)
1938 ("<mouse-9>" . pdf-history-forward)
1939 ("<drag-mouse-9>" . pdf-history-forward)
1940 ("M-RET" . image-previous-line))
1941 :config (pdf-tools-install nil t)
1942 :custom (pdf-view-resize-factor 1.05))
1944 (use-package org-pdftools
1945 :straight (:host github :repo "fuxialexander/org-pdftools")
1949 (with-eval-after-load 'org
1950 (require 'org-pdftools)))
1952 (use-package biblio)
1955 :hook (latex-mode . reftex-mode))
1957 (use-feature reftex-cite
1959 :disabled ; enable to disable
1960 ; reftex-cite's default choice
1963 (defun reftex-get-bibkey-default ()
1964 "If the cursor is in a citation macro, return the word before the macro."
1965 (let* ((macro (reftex-what-macro 1)))
1967 (when (and macro (string-match "cite" (car macro)))
1968 (goto-char (cdr macro)))
1969 (reftex-this-word)))))
1971 (use-package minions
1973 :config (minions-mode))
1977 (dmenu-prompt-string "run: ")
1978 (dmenu-save-file (b/var "dmenu-items")))
1981 ;; TODO: fix build by properly building the eosd-pixbuf.c module
1982 ;; e.g. see https://github.com/raxod502/straight.el/issues/386
1984 :straight (:host github :repo "clarete/eosd")
1990 (use-package nnreddit
1995 (nnreddit-python-command "python3"))
1998 ;;; Email (with Gnus)
2000 (defvar b/maildir (expand-file-name "~/mail/"))
2001 (with-eval-after-load 'recentf
2002 (add-to-list 'recentf-exclude b/maildir))
2005 b/gnus-init-file (b/etc "gnus")
2006 mail-user-agent 'gnus-user-agent
2007 read-mail-command 'gnus)
2010 :bind (("s-m" . gnus)
2011 ("s-M" . gnus-unplugged)
2013 ("C-c a M" . gnus-unplugged))
2016 gnus-select-method '(nnnil "")
2017 gnus-secondary-select-methods
2018 '((nnimap "shemshak"
2019 (nnimap-stream plain)
2020 (nnimap-address "127.0.0.1")
2021 (nnimap-server-port 143)
2022 (nnimap-authenticator plain)
2023 (nnimap-user "amin@shemshak.local"))
2025 (nnimap-stream plain)
2026 (nnimap-address "127.0.0.1")
2027 (nnimap-server-port 143)
2028 (nnimap-authenticator plain)
2029 (nnimap-user "bandali@gnu.local")
2030 (nnimap-inbox "INBOX")
2031 (nnimap-split-methods 'nnimap-split-fancy)
2032 (nnimap-split-fancy (|
2033 ;; (: gnus-registry-split-fancy-with-parent)
2034 ;; (: gnus-group-split-fancy "INBOX" t "INBOX")
2036 (list ".*<\\(.*\\)\\.\\(non\\)?gnu\\.org>.*" "l.\\1")
2037 ;; *.lists.sr.ht, omitting one dot if present
2038 ;; add more \\.?\\([^.]*\\) if needed
2039 (list ".*<~\\(.*\\)/\\([^.]*\\)\\.?\\([^.]*\\)\\.lists.sr.ht>.*" "l.~\\1.\\2\\3")
2041 (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters")
2043 (list ".*atreus.freelists.org" "l.atreus")
2044 (list ".*deepspec.lists.cs.princeton.edu" "l.deepspec")
2045 ;; (list ".*haskell-art.we.lurk.org" "l.haskell.art") ;d
2046 (list ".*haskell-cafe.haskell.org" "l.haskell-cafe")
2047 ;; (list ".*notmuch.notmuchmail.org" "l.notmuch") ;u
2048 ;; (list ".*dev.lists.parabola.nu" "l.parabola-dev") ;u
2049 ;; ----------------------------------
2050 ;; legend: (u)nsubscribed | (d)ead
2051 ;; ----------------------------------
2052 ;; otherwise, leave mail in INBOX
2055 (nnimap-stream plain)
2056 (nnimap-address "127.0.0.1")
2057 (nnimap-server-port 143)
2058 (nnimap-authenticator plain)
2059 (nnimap-user "abandali@uw.local")
2060 (nnimap-inbox "INBOX")
2061 (nnimap-split-methods 'nnimap-split-fancy)
2062 (nnimap-split-fancy (|
2063 ;; (: gnus-registry-split-fancy-with-parent)
2065 ("subject" "SE\\s-?212" "course.se212-f19")
2066 (from "SE\\s-?212" "course.se212-f19")
2070 (nnimap-stream plain)
2071 (nnimap-address "127.0.0.1")
2072 (nnimap-server-port 143)
2073 (nnimap-authenticator plain)
2074 (nnimap-user "abandali@csc.uw.local")))
2075 gnus-message-archive-group "nnimap+gnu:INBOX"
2078 (to-address . "atreus@freelists.org")
2079 (to-list . "atreus@freelists.org"))
2081 (to-address . "deepspec@lists.cs.princeton.edu")
2082 (to-list . "deepspec@lists.cs.princeton.edu")
2083 (list-identifier . "\\[deepspec\\]"))
2085 (to-address . "emacs-devel@gnu.org")
2086 (to-list . "emacs-devel@gnu.org"))
2087 ("l\\.help-gnu-emacs"
2088 (to-address . "help-gnu-emacs@gnu.org")
2089 (to-list . "help-gnu-emacs@gnu.org"))
2090 ("l\\.info-gnu-emacs"
2091 (to-address . "info-gnu-emacs@gnu.org")
2092 (to-list . "info-gnu-emacs@gnu.org"))
2093 ("l\\.emacs-orgmode"
2094 (to-address . "emacs-orgmode@gnu.org")
2095 (to-list . "emacs-orgmode@gnu.org")
2096 (list-identifier . "\\[O\\]"))
2097 ("l\\.emacs-tangents"
2098 (to-address . "emacs-tangents@gnu.org")
2099 (to-list . "emacs-tangents@gnu.org"))
2100 ("l\\.emacsconf-discuss"
2101 (to-address . "emacsconf-discuss@gnu.org")
2102 (to-list . "emacsconf-discuss@gnu.org"))
2103 ("l\\.emacsconf-register"
2104 (to-address . "emacsconf-register@gnu.org")
2105 (to-list . "emacsconf-register@gnu.org"))
2106 ("l\\.emacsconf-submit"
2107 (to-address . "emacsconf-submit@gnu.org")
2108 (to-list . "emacsconf-submit@gnu.org"))
2109 ("l\\.fencepost-users"
2110 (to-address . "fencepost-users@gnu.org")
2111 (to-list . "fencepost-users@gnu.org")
2112 (list-identifier . "\\[Fencepost-users\\]"))
2113 ("l\\.gnewsense-art"
2114 (to-address . "gnewsense-art@nongnu.org")
2115 (to-list . "gnewsense-art@nongnu.org")
2116 (list-identifier . "\\[gNewSense-art\\]"))
2117 ("l\\.gnewsense-dev"
2118 (to-address . "gnewsense-dev@nongnu.org")
2119 (to-list . "gnewsense-dev@nongnu.org")
2120 (list-identifier . "\\[Gnewsense-dev\\]"))
2121 ("l\\.gnewsense-users"
2122 (to-address . "gnewsense-users@nongnu.org")
2123 (to-list . "gnewsense-users@nongnu.org")
2124 (list-identifier . "\\[gNewSense-users\\]"))
2125 ("l\\.gnunet-developers"
2126 (to-address . "gnunet-developers@gnu.org")
2127 (to-list . "gnunet-developers@gnu.org")
2128 (list-identifier . "\\[GNUnet-developers\\]"))
2130 (to-address . "help-gnunet@gnu.org")
2131 (to-list . "help-gnunet@gnu.org")
2132 (list-identifier . "\\[Help-gnunet\\]"))
2134 (to-address . "bug-gnuzilla@gnu.org")
2135 (to-list . "bug-gnuzilla@gnu.org")
2136 (list-identifier . "\\[Bug-gnuzilla\\]"))
2138 (to-address . "gnuzilla-dev@gnu.org")
2139 (to-list . "gnuzilla-dev@gnu.org")
2140 (list-identifier . "\\[Gnuzilla-dev\\]"))
2142 (to-address . "guile-devel@gnu.org")
2143 (to-list . "guile-devel@gnu.org"))
2145 (to-address . "guile-user@gnu.org")
2146 (to-list . "guile-user@gnu.org"))
2148 (to-address . "guix-devel@gnu.org")
2149 (to-list . "guix-devel@gnu.org"))
2151 (to-address . "help-guix@gnu.org")
2152 (to-list . "help-guix@gnu.org"))
2154 (to-address . "info-guix@gnu.org")
2155 (to-list . "info-guix@gnu.org"))
2156 ("l\\.savannah-hackers-public"
2157 (to-address . "savannah-hackers-public@gnu.org")
2158 (to-list . "savannah-hackers-public@gnu.org"))
2159 ("l\\.savannah-users"
2160 (to-address . "savannah-users@gnu.org")
2161 (to-list . "savannah-users@gnu.org"))
2163 (to-address . "www-commits@gnu.org")
2164 (to-list . "www-commits@gnu.org"))
2166 (to-address . "www-discuss@gnu.org")
2167 (to-list . "www-discuss@gnu.org"))
2169 (to-address . "haskell-art@we.lurk.org")
2170 (to-list . "haskell-art@we.lurk.org")
2171 (list-identifier . "\\[haskell-art\\]"))
2173 (to-address . "haskell-cafe@haskell.org")
2174 (to-list . "haskell-cafe@haskell.org")
2175 (list-identifier . "\\[Haskell-cafe\\]"))
2177 (to-address . "notmuch@notmuchmail.org")
2178 (to-list . "notmuch@notmuchmail.org"))
2180 (to-address . "dev@lists.parabola.nu")
2181 (to-list . "dev@lists.parabola.nu")
2182 (list-identifier . "\\[Dev\\]"))
2183 ("l\\.~bandali\\.public-inbox"
2184 (to-address . "~bandali/public-inbox@lists.sr.ht")
2185 (to-list . "~bandali/public-inbox@lists.sr.ht"))
2186 ("l\\.~sircmpwn\\.free-writers-club"
2187 (to-address . "~sircmpwn/free-writers-club@lists.sr.ht")
2188 (to-list . "~sircmpwn/free-writers-club@lists.sr.ht"))
2189 ("l\\.~sircmpwn\\.srht-admins"
2190 (to-address . "~sircmpwn/sr.ht-admins@lists.sr.ht")
2191 (to-list . "~sircmpwn/sr.ht-admins@lists.sr.ht"))
2192 ("l\\.~sircmpwn\\.srht-announce"
2193 (to-address . "~sircmpwn/sr.ht-announce@lists.sr.ht")
2194 (to-list . "~sircmpwn/sr.ht-announce@lists.sr.ht"))
2195 ("l\\.~sircmpwn\\.srht-dev"
2196 (to-address . "~sircmpwn/sr.ht-dev@lists.sr.ht")
2197 (to-list . "~sircmpwn/sr.ht-dev@lists.sr.ht"))
2198 ("l\\.~sircmpwn\\.srht-discuss"
2199 (to-address . "~sircmpwn/sr.ht-discuss@lists.sr.ht")
2200 (to-list . "~sircmpwn/sr.ht-discuss@lists.sr.ht"))
2202 (to-address . "webmasters@gnu.org")
2203 (to-list . "webmasters@gnu.org"))
2210 gnus-large-newsgroup 50
2211 gnus-home-directory (b/var "gnus/")
2212 gnus-directory (concat gnus-home-directory "news/")
2213 message-directory (concat gnus-home-directory "mail/")
2214 nndraft-directory (concat gnus-home-directory "drafts/")
2215 gnus-save-newsrc-file nil
2216 gnus-read-newsrc-file nil
2217 gnus-interactive-exit nil
2218 gnus-gcc-mark-as-read t)
2220 (when (version< emacs-version "27")
2222 'nnmail-split-abbrev-alist
2223 '(list . "list-id\\|list-post\\|x-mailing-list\\|x-beenthere\\|x-loop")
2226 ;; (gnus-registry-initialize)
2228 (with-eval-after-load 'recentf
2229 (add-to-list 'recentf-exclude gnus-home-directory)))
2231 (use-feature gnus-art
2234 gnus-buttonized-mime-types '("multipart/\\(signed\\|encrypted\\)")
2235 gnus-visible-headers
2236 (concat gnus-visible-headers "\\|^List-Id:\\|^X-RT-Originator:\\|^User-Agent:")
2237 gnus-sorted-header-list
2238 '("^From:" "^Subject:" "^Summary:" "^Keywords:"
2239 "^Followup-To:" "^To:" "^Cc:" "X-RT-Originator"
2240 "^Newsgroups:" "List-Id:" "^Organization:"
2241 "^User-Agent:" "^Date:")
2242 ;; local-lapsed article dates
2243 ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11
2244 gnus-article-date-headers '(user-defined)
2245 gnus-article-time-format
2247 (let* ((date (format-time-string "%a, %d %b %Y %T %z" time))
2248 (local (article-make-date-line date 'local))
2249 (combined-lapsed (article-make-date-line date
2252 (string-match " (.+" combined-lapsed)
2253 (match-string 0 combined-lapsed))))
2254 (concat local lapsed))))
2256 :map gnus-article-mode-map
2257 ("M-L" . org-store-link)))
2259 (use-feature gnus-sum
2260 :bind (:map gnus-summary-mode-map
2261 :prefix-map b/gnus-summary-prefix-map
2263 ("r" . gnus-summary-reply)
2264 ("w" . gnus-summary-wide-reply)
2265 ("v" . gnus-summary-show-raw-article))
2268 :map gnus-summary-mode-map
2269 ("M-L" . org-store-link))
2270 :hook (gnus-summary-mode . b/no-mouse-autoselect-window)
2272 (gnus-thread-sort-functions '(gnus-thread-sort-by-number
2273 gnus-thread-sort-by-subject
2274 gnus-thread-sort-by-date)))
2276 (use-feature gnus-msg
2278 (defvar b/signature "Amin Bandali
2279 Free Software Activist | GNU Webmaster & Volunteer
2280 GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103
2281 https://shemshak.org/~amin")
2282 (defvar b/gnu-signature "Amin Bandali
2283 Free Software Activist | GNU Webmaster & Volunteer
2284 GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103
2285 https://bandali.eu.org")
2286 (defvar b/uw-signature "Amin Bandali, MMath Student
2287 Cheriton School of Computer Science
2288 University of Waterloo
2289 https://bandali.eu.org")
2290 (defvar b/csc-signature "Amin Bandali
2292 Computer Science Club, University of Waterloo
2293 https://csclub.uwaterloo.ca/~abandali")
2294 (setq gnus-posting-styles
2296 (address "bandali@gnu.org")
2297 (signature b/gnu-signature)
2298 (eval (set (make-local-variable 'message-user-fqdn) "fencepost.gnu.org")))
2299 ("nnimap\\+shemshak:.*"
2300 (address "amin@shemshak.org")
2302 (signature b/signature)
2303 (gcc "nnimap+shemshak:Sent")
2304 (eval (setq b/message-cite-say-hi t)))
2305 ((header "subject" "ThankCRM")
2306 (to "webmasters-comment@gnu.org")
2308 (eval (setq b/message-cite-say-hi nil)))
2310 (address "bandali@uwaterloo.ca")
2311 (signature b/uw-signature))
2312 ("nnimap\\+uw:INBOX"
2313 (gcc "\"nnimap+uw:Sent Items\""))
2315 (address "bandali@csclub.uwaterloo.ca")
2316 (signature b/csc-signature)
2317 (gcc "nnimap+csc:Sent")))))
2319 (use-feature gnus-topic
2320 :hook (gnus-group-mode . gnus-topic-mode)
2321 :config (setq gnus-topic-line-format "%i[ %A: %(%{%n%}%) ]%v\n"))
2323 (use-feature gnus-agent
2325 (setq gnus-agent-synchronize-flags 'ask)
2326 :hook (gnus-group-mode . gnus-agent-mode))
2328 (use-feature gnus-group
2330 (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)"))
2333 ;; problematic with ebdb's popup, *EBDB-Gnus*
2334 (use-feature gnus-win
2336 (setq gnus-use-full-window nil)))
2338 (use-feature gnus-dired
2339 :commands gnus-dired-mode
2341 (add-hook 'dired-mode-hook 'gnus-dired-mode))
2343 (use-feature mm-decode
2345 (setq mm-discouraged-alternatives '("text/html" "text/richtext")
2346 mm-decrypt-option 'known
2347 mm-verify-option 'known))
2351 (mm-uu-diff-groups-regexp
2352 "\\(gmane\\|gnu\\|l\\)\\..*\\(diff\\|commit\\|cvs\\|bug\\|dev\\)"))
2354 (use-feature sendmail
2356 (setq sendmail-program (executable-find "msmtp")
2357 ;; message-sendmail-extra-arguments '("-v" "-d")
2358 mail-specify-envelope-from t
2359 mail-envelope-from 'header))
2361 (use-feature message
2363 ;; redefine for a simplified In-Reply-To header
2364 ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67)
2365 (defun message-make-in-reply-to ()
2366 "Return the In-Reply-To header for this message."
2367 (when message-reply-headers
2368 (let ((from (mail-header-from message-reply-headers))
2369 (msg-id (mail-header-id message-reply-headers)))
2373 (defconst b/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:")
2374 (defconst message-cite-style-bandali
2375 '((message-cite-function 'message-cite-original)
2376 (message-citation-line-function 'message-insert-formatted-citation-line)
2377 (message-cite-reply-position 'traditional)
2378 (message-yank-prefix "> ")
2379 (message-yank-cited-prefix ">")
2380 (message-yank-empty-prefix ">")
2381 (message-citation-line-format
2382 (if b/message-cite-say-hi
2383 (concat "Hi %F,\n\n" b/message-cite-style-format)
2384 b/message-cite-style-format)))
2385 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
2386 (setq ;; message-cite-style 'message-cite-style-bandali
2387 message-kill-buffer-on-exit t
2388 message-send-mail-function 'message-send-mail-with-sendmail
2389 message-sendmail-envelope-from 'header
2390 message-subscribed-address-functions
2391 '(gnus-find-subscribed-addresses)
2392 message-dont-reply-to-names
2393 "\\(\\(\\(amin\\|mab\\)@shemshak\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|\\(a?bandali@\\(csclub\\.\\)?uwaterloo\\.ca\\)\\)")
2394 (require 'company-ebdb)
2395 :hook (;; (message-setup . mml-secure-message-sign-pgpmime)
2396 (message-mode . flyspell-mode)
2397 (message-mode . (lambda ()
2398 ;; (setq fill-column 65
2399 ;; message-fill-column 65)
2400 (make-local-variable 'company-idle-delay)
2401 (setq company-idle-delay 0.2))))
2403 ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
2404 ;; (message-header-to ((t (:foreground "#111" :weight normal))))
2405 ;; (message-header-cc ((t (:foreground "#333" :weight normal))))
2407 (message-elide-ellipsis "[...]\n"))
2411 (use-feature mml-sec
2413 (mml-secure-openpgp-encrypt-to-self t)
2414 (mml-secure-openpgp-sign-with-sender t))
2416 (use-feature footnote
2419 ;; (setq footnote-start-tag ""
2420 ;; footnote-end-tag ""
2421 ;; footnote-style 'unicode)
2423 (:map message-mode-map
2424 :prefix-map b/footnote-prefix-map
2426 ("a" . footnote-add-footnote)
2427 ("b" . footnote-back-to-message)
2428 ("c" . footnote-cycle-style)
2429 ("d" . footnote-delete-footnote)
2430 ("g" . footnote-goto-footnote)
2431 ("r" . footnote-renumber-footnotes)
2432 ("s" . footnote-set-style)))
2437 :bind (:map gnus-group-mode-map ("e" . ebdb))
2439 (setq ebdb-sources (b/var "ebdb"))
2440 (with-eval-after-load 'swiper
2441 (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t)))
2443 (use-feature ebdb-com
2446 ;; (use-package ebdb-complete
2449 ;; (ebdb-complete-enable))
2451 (use-package company-ebdb
2453 (defun company-ebdb--post-complete (_) nil))
2455 (use-feature ebdb-gnus
2459 (ebdb-gnus-window-size 0.3))
2461 (use-feature ebdb-mua
2464 :custom (ebdb-mua-pop-up t))
2466 ;; (use-package ebdb-message
2469 ;; (use-package ebdb-vcard
2472 (use-package message-x)
2475 (use-package message-x
2477 (message-x-completion-alist
2479 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address)
2482 (quote message-newgroups-header-regexp))
2483 message-newgroups-header-regexp message-newsgroups-header-regexp)
2484 . message-expand-group))))))
2487 (use-package gnus-harvest
2488 :commands gnus-harvest-install
2491 (if (featurep 'message-x)
2492 (gnus-harvest-install 'message-x)
2493 (gnus-harvest-install))))
2495 (use-feature gnus-article-treat-patch
2500 ;; note: be sure to customize faces with `:foreground "white"' when
2501 ;; using a theme with a white/light background :)
2502 (setq ft/gnus-article-patch-conditions
2503 '("^@@ -[0-9]+,[0-9]+ \\+[0-9]+,[0-9]+ @@")))
2506 ;;; IRC (with ERC and ZNC)
2509 :bind (("C-c b e" . erc-switch-to-buffer)
2511 ("M-a" . erc-track-switch-buffer))
2513 (erc-join-buffer 'bury)
2514 (erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
2515 (erc-nick "bandali")
2517 (erc-rename-buffers t)
2518 (erc-server-reconnect-attempts 5)
2519 (erc-server-reconnect-timeout 3)
2521 (defun erc-cmd-OPME ()
2522 "Request chanserv to op me."
2523 (erc-message "PRIVMSG"
2524 (format "chanserv op %s %s"
2525 (erc-default-target)
2526 (erc-current-nick)) nil))
2527 (defun erc-cmd-DEOPME ()
2528 "Deop myself from current channel."
2529 (erc-cmd-DEOP (format "%s" (erc-current-nick))))
2530 (add-to-list 'erc-modules 'keep-place)
2531 (add-to-list 'erc-modules 'notifications)
2532 (add-to-list 'erc-modules 'spelling)
2533 (add-to-list 'erc-modules 'scrolltoplace)
2534 (erc-update-modules))
2536 (use-feature erc-fill
2539 (erc-fill-column 77)
2540 (erc-fill-function 'erc-fill-static)
2541 (erc-fill-static-center 18))
2543 (use-feature erc-pcomplete
2546 (erc-pcomplete-nick-postfix ","))
2548 (use-feature erc-track
2550 :bind (("C-c a e t d" . erc-track-disable)
2551 ("C-c a e t e" . erc-track-enable))
2553 (erc-track-enable-keybindings nil)
2554 (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT"
2555 "324" "329" "332" "333" "353" "477"))
2556 (erc-track-position-in-mode-line t)
2557 (erc-track-priority-faces-only 'all)
2558 (erc-track-shorten-function nil))
2560 (use-package erc-hl-nicks
2563 (use-package erc-scrolltoplace
2567 :straight (:host nil :repo "https://git.shemshak.org/amin/znc.el")
2568 :bind (("C-c a e e" . znc-erc)
2569 ("C-c a e a" . znc-all))
2571 (let ((pwd (let ((auth (auth-source-search :host "znca")))
2573 ((null auth) (error "Couldn't find znca's authinfo"))
2574 (t (funcall (plist-get (car auth) :secret)))))))
2576 `(("znc.shemshak.org" 1337 t
2577 ((freenode "amin/freenode" ,pwd)))
2578 ("znc.shemshak.org" 1337 t
2579 ((moznet "amin/moznet" ,pwd)))
2580 ("znc.shemshak.org" 1337 t
2581 ((oftc "amin/oftc" ,pwd)))))))
2584 ;;; Post initialization
2586 (message "Loading %s...done (%.3fs)" user-init-file
2587 (float-time (time-subtract (current-time)
2588 b/before-user-init-time)))
2590 ;;; init.el ends here