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
)
184 (use-package delight
)
189 ;; keep ~/.emacs.d clean
190 (use-package no-littering
193 (defalias 'b
/etc
'no-littering-expand-etc-file-name
)
194 (defalias 'b
/var
'no-littering-expand-var-file-name
))
196 ;; separate custom file (don't want it mixing with init.el)
200 (setq custom-file
(b/etc
"custom.el"))
201 (when (file-exists-p custom-file
)
203 ;; while at it, treat themes as safe
204 (setf custom-safe-themes t
)
205 ;; only one custom theme at a time
207 (defadvice load-theme
(before clear-previous-themes activate
)
208 "Clear existing theme settings instead of layering them"
209 (mapc #'disable-theme custom-enabled-themes
))))
211 ;; load the secrets file if it exists, otherwise show a warning
214 (load (b/etc
"secrets"))))
216 ;; better $PATH (and other environment variable) handling
217 (use-package exec-path-from-shell
220 (setq exec-path-from-shell-arguments nil
221 exec-path-from-shell-check-startup-files nil
)
223 (exec-path-from-shell-initialize)
224 ;; while we're at it, let's fix access to our running ssh-agent
225 (exec-path-from-shell-copy-env "SSH_AGENT_PID")
226 (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
228 ;; start up emacs server. see
229 ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server
232 :config
(or (server-running-p) (server-mode)))
241 (defmacro b
/setq-every
(value &rest vars
)
242 "Set all the variables from VARS to value VALUE."
243 (declare (indent defun
) (debug t
))
244 `(progn ,@(mapcar (lambda (x) (list 'setq x value
)) vars
)))
246 (defun b/start-process
(program &rest args
)
247 "Same as `start-process', but doesn't bother about name and buffer."
248 (let ((process-name (concat program
"_process"))
249 (buffer-name (generate-new-buffer-name
250 (concat program
"_output"))))
251 (apply #'start-process
252 process-name buffer-name program args
)))
254 (defun b/dired-start-process
(program &optional args
)
255 "Open current file with a PROGRAM."
256 ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can
257 ;; be nil, so remove it).
258 (apply #'b
/start-process
260 (remove nil
(list args
(dired-get-file-for-visit)))))
262 (defun b/add-elisp-section
()
266 (insert "\n\f\n;;; "))
268 (defun b/no-mouse-autoselect-window
()
269 "Conveniently disable `focus-follows-mouse'.
270 For disabling the behaviour for certain buffers and/or modes."
271 (make-local-variable 'mouse-autoselect-window
)
272 (setq mouse-autoselect-window nil
))
277 ;;;; C-level customizations
281 enable-recursive-minibuffers t
282 resize-mini-windows t
283 ;; more useful frame titles
284 frame-title-format
'("" invocation-name
" - "
286 (if (buffer-file-name)
287 (abbreviate-file-name (buffer-file-name))
289 ;; i don't feel like jumping out of my chair every now and again; so
290 ;; don't BEEP! at me, emacs
291 ring-bell-function
'ignore
294 ;; scroll-conservatively 10000
296 scroll-conservatively
10
297 scroll-preserve-screen-position
1
298 ;; focus follows mouse
299 mouse-autoselect-window t
)
302 ;; always use space for indentation
310 (dolist (ft (fontset-list))
314 (font-spec :name
"Source Code Pro" :size
14))
318 (font-spec :name
"DejaVu Sans Mono")
325 ;; :name "Symbola monospacified for DejaVu Sans Mono")
331 ;; (font-spec :name "DejaVu Sans Mono")
337 (font-spec :name
"DejaVu Sans Mono" :size
14)
341 ;;;; Elisp-level customizations
347 ;; don't need to see the startup echo area message
348 (advice-add #'display-startup-echo-area-message
:override
#'ignore
)
350 ;; i want *scratch* as my startup buffer
351 (initial-buffer-choice t
)
352 ;; i don't need the default hint
353 (initial-scratch-message nil
)
354 ;; use customizable text-mode as major mode for *scratch*
355 ;; (initial-major-mode 'text-mode)
356 ;; inhibit buffer list when more than 2 files are loaded
357 (inhibit-startup-buffer-menu t
)
358 ;; don't need to see the startup screen or echo area message
359 (inhibit-startup-screen t
)
360 (inhibit-startup-echo-area-message user-login-name
))
366 ;; backups (C-h v make-backup-files RET)
367 (backup-by-copying t
)
369 (delete-old-versions t
)
372 (auto-save-file-name-transforms
373 `((".*" ,(b/var
"auto-save/") t
)))
375 ;; insert newline at the end of files
376 (require-final-newline t
)
378 ;; open read-only file buffers in view-mode
379 ;; (enables niceties like `q' for quit)
382 ;; disable disabled commands
383 (setq disabled-command-function nil
)
385 ;; lazy-person-friendly yes/no prompts
386 (defalias 'yes-or-no-p
#'y-or-n-p
)
388 ;; enable automatic reloading of changed buffers and files
389 (use-feature autorevert
392 (global-auto-revert-mode 1)
394 (auto-revert-verbose nil
)
395 (global-auto-revert-non-file-buffers nil
))
397 ;; time and battery in mode-line
401 (setq display-time-default-load-average nil
)
407 (display-battery-mode)))
413 ;; (fringe-mode '(3 . 1))
419 ;; enable winner-mode (C-h f winner-mode RET)
424 ;; don't display *compilation* buffer on success. based on
425 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
426 ;; instead of the now obsolete `flet'.
427 (defun b/compilation-finish-function
(buffer outstr
)
428 (unless (string-match "finished" outstr
)
429 (switch-to-buffer-other-window buffer
))
432 (setq compilation-finish-functions
#'b
/compilation-finish-function
)
436 (defadvice compilation-start
437 (around inhibit-display
438 (command &optional mode name-function highlight-regexp
))
439 (if (not (string-match "^\\(find\\|grep\\)" command
))
440 (cl-letf (((symbol-function 'display-buffer
) #'ignore
))
441 (save-window-excursion ad-do-it
))
443 (ad-activate 'compilation-start
))
447 ;; allow scrolling in Isearch
448 (isearch-allow-scroll t
)
449 ;; search for non-ASCII characters: i’d like non-ASCII characters such
450 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
451 ;; counterpart. shoutout to
452 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
453 (search-default-mode #'char-fold-to-regexp
))
455 ;; uncomment to extend the above behaviour to query-replace
459 (replace-char-fold t
)))
462 :bind
("C-x v C-=" . vc-ediff
))
465 :config
(add-hook 'ediff-after-quit-hook-internal
'winner-undo
)
466 :custom
((ediff-window-setup-function 'ediff-setup-windows-plain
)
467 (ediff-split-window-function 'split-window-horizontally
)))
469 (use-feature face-remap
471 ;; gentler font resizing
472 (text-scale-mode-step 1.05))
477 (setq mouse-wheel-scroll-amount
'(1 ((shift) .
1)) ; one line at a time
478 mouse-wheel-progressive-speed nil
; don't accelerate scrolling
479 mouse-wheel-follow-mouse t
)) ; scroll window under mouse
481 (use-feature pixel-scroll
483 :config
(pixel-scroll-mode 1))
485 (use-feature epg-config
487 ((epg-gpg-program (executable-find "gpg"))))
495 ("C-c e b" . eval-buffer
)
496 ("C-c e e" . eval-last-sexp
)
497 ("C-c e r" . eval-region
)
499 ("C-c e i" . emacs-init-time
)
500 ("C-c e u" . emacs-uptime
)
501 ("C-c e v" . emacs-version
)
503 ("C-c F m" . make-frame-command
)
504 ("C-c F d" . delete-frame
)
505 ("C-c F D" . server-edit
)
507 ("C-S-h C" . describe-char
)
508 ("C-S-h F" . describe-face
)
510 ("C-x k" . kill-this-buffer
)
511 ("C-x K" . kill-buffer
)
512 ("C-x s" . save-buffer
)
513 ("C-x S" . save-some-buffers
)
515 :map emacs-lisp-mode-map
516 ("<C-return>" . b
/add-elisp-section
))
518 (when (display-graphic-p)
519 (unbind-key "C-z" global-map
))
522 ;; for back and forward mouse keys
523 ("<XF86Back>" . previous-buffer
)
524 ("<mouse-8>" . previous-buffer
)
525 ("<drag-mouse-8>" . previous-buffer
)
526 ("<XF86Forward>" . next-buffer
)
527 ("<mouse-9>" . next-buffer
)
528 ("<drag-mouse-9>" . next-buffer
)
529 ("<drag-mouse-2>" . kill-this-buffer
)
530 ("<drag-mouse-3>" . ivy-switch-buffer
))
533 :prefix-map b
/straight-prefix-map
535 ("u" . straight-use-package
)
536 ("f" . straight-freeze-versions
)
537 ("t" . straight-thaw-versions
)
538 ("P" . straight-prune-build
)
539 ("g" . straight-get-recipe
)
540 ("r" . b
/reload-init
)
541 ;; M-x ^straight-.*-all$
542 ("a c" . straight-check-all
)
543 ("a f" . straight-fetch-all
)
544 ("a m" . straight-merge-all
)
545 ("a n" . straight-normalize-all
)
546 ("a F" . straight-pull-all
)
547 ("a P" . straight-push-all
)
548 ("a r" . straight-rebuild-all
)
549 ;; M-x ^straight-.*-package$
550 ("p c" . straight-check-package
)
551 ("p f" . straight-fetch-package
)
552 ("p m" . straight-merge-package
)
553 ("p n" . straight-normalize-package
)
554 ("p F" . straight-pull-package
)
555 ("p P" . straight-push-package
)
556 ("p r" . straight-rebuild-package
))
559 ;;; Essential packages
565 (require 'exwm-config
)
567 ;; Set the initial workspace number.
568 (setq exwm-workspace-number
4)
570 ;; Make class name the buffer name, truncating beyond 50 characters
571 (defun exwm-rename-buffer ()
573 (exwm-workspace-rename-buffer
574 (concat exwm-class-name
":"
575 (if (<= (length exwm-title
) 50) exwm-title
576 (concat (substring exwm-title
0 49) "...")))))
577 (add-hook 'exwm-update-class-hook
'exwm-rename-buffer
)
578 (add-hook 'exwm-update-title-hook
'exwm-rename-buffer
)
581 (exwm-input-set-key (kbd "s-R") #'exwm-reset
)
582 ;; 's-\': Switch workspace
583 (exwm-input-set-key (kbd "s-\\") #'exwm-workspace-switch
)
584 ;; 's-N': Switch to certain workspace
587 (kbd (format "s-%d" i
))
590 (exwm-workspace-switch-create i
))))
591 ;; 's-SPC': Launch application
592 ;; (exwm-input-set-key
595 ;; (interactive (list (read-shell-command "➜ ")))
596 ;; (start-process-shell-command command nil command)))
598 (exwm-input-set-key (kbd "M-s-SPC") #'counsel-linux-app
)
600 ;; Shorten 'C-c C-q' to 'C-q'
601 (define-key exwm-mode-map
[?\C-q
] #'exwm-input-send-next-key
)
603 ;; Line-editing shortcuts
604 (setq exwm-input-simulation-keys
609 ([?\M-f] . [C-right])
617 ([?\C-k] . [S-end delete])
619 ;; ([?\C-w] . [?\C-x])
623 ([?\C-s] . [?\C-f])))
628 (add-hook 'exwm-init-hook #'exwm-config--fix/ido-buffer-window-other-frame)
630 (require 'exwm-systemtray)
631 (exwm-systemtray-enable)
633 (require 'exwm-randr)
636 ;; (exwm-input-set-key
637 ;; (kbd "s-<return>")
640 ;; (start-process "urxvt" nil "urxvt")))
642 ;; (exwm-input-set-key
643 ;; (kbd "s-SPC") ;; rofi doesn't properly launch programs when started from emacs
646 ;; (start-process-shell-command "rofi-run" nil "rofi -show run -display-run '> ' -display-window ' 🗔 '")))
648 ;; (exwm-input-set-key
652 ;; (start-process-shell-command "rofi-win" nil "rofi -show window -display-run '> ' -display-window ' 🗔 '")))
654 ;; (exwm-input-set-key
658 ;; (start-process "rofi-pass" nil "rofi-pass")))
660 ;; (exwm-input-set-key
661 ;; (kbd "<XF86AudioMute>")
664 ;; (start-process-shell-command "pamixer" nil "pamixer --toggle-mute")))
666 ;; (exwm-input-set-key
667 ;; (kbd "<XF86AudioLowerVolume>")
670 ;; (start-process-shell-command "pamixer" nil "pamixer --allow-boost --decrease 5")))
672 ;; (exwm-input-set-key
673 ;; (kbd "<XF86AudioRaiseVolume>")
676 ;; (start-process-shell-command "pamixer" nil "pamixer --allow-boost --increase 5")))
678 ;; (exwm-input-set-key
679 ;; (kbd "<XF86AudioPlay>")
682 ;; (start-process-shell-command "mpc" nil "mpc toggle")))
684 ;; (exwm-input-set-key
685 ;; (kbd "<XF86AudioPrev>")
688 ;; (start-process-shell-command "mpc" nil "mpc prev")))
690 ;; (exwm-input-set-key
691 ;; (kbd "<XF86AudioNext>")
694 ;; (start-process-shell-command "mpc" nil "mpv next")))
696 (defun b/exwm-pasystray ()
697 "A command used to start pasystray."
699 (if (executable-find "pasystray")
701 (message "EXWM: starting pasystray ...")
702 (start-process-shell-command "pasystray" nil "pasystray --notify=all"))
703 (message "EXWM: pasystray is not installed, abort!")))
705 (add-hook 'exwm-init-hook #'b/exwm-pasystray)
711 (exwm-floating-toggle-floating)))
717 (exwm-layout-toggle-fullscreen)))
723 (kill-buffer (current-buffer))))
729 (exwm-manage--kill-client))))
731 ;; use the org-plus-contrib package to get the whole deal
732 (use-package org-plus-contrib)
737 (setq org-src-tab-acts-natively t
738 org-src-preserve-indentation nil
739 org-edit-src-content-indentation 0
740 org-link-email-description-format "Email %c: %s" ; %.30s
741 org-highlight-latex-and-related '(entities)
742 org-use-speed-commands t
743 org-startup-folded 'content
744 org-catch-invisible-edits 'show-and-error
746 (when (version< org-version "9.3")
747 (setq org-email-link-description-format
748 org-link-email-description-format))
749 (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t)
750 (add-to-list 'org-modules 'org-habit)
752 (("C-c a o a" . org-agenda)
754 ("M-L" . org-insert-last-stored-link)
755 ("M-O" . org-toggle-link-display))
756 :hook ((org-mode . org-indent-mode)
757 (org-mode . auto-fill-mode)
758 (org-mode . flyspell-mode))
760 (org-pretty-entities t)
761 (org-agenda-files '("~/usr/org/todos/personal.org"
762 "~/usr/org/todos/habits.org"
763 "~/src/git/masters-thesis/todo.org"))
764 (org-agenda-start-on-weekday 0)
765 (org-agenda-time-leading-zero t)
766 (org-habit-graph-column 44)
767 (org-latex-packages-alist '(("" "listings") ("" "color")))
769 '(org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21"))))
770 '(org-block ((t (:background "#1d1f21"))))
771 '(org-latex-and-related ((t (:foreground "#b294bb")))))
773 (use-feature ox-latex
776 (setq org-latex-listings 'listings
777 ;; org-latex-prefer-user-labels t
779 (add-to-list 'org-latex-classes
780 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
781 ("\\section{%s}" . "\\section*{%s}")
782 ("\\subsection{%s}" . "\\subsection*{%s}")
783 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
784 ("\\paragraph{%s}" . "\\paragraph*{%s}")
785 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
787 (require 'ox-beamer))
789 (use-feature ox-extra
791 (ox-extras-activate '(latex-header-blocks ignore-headlines)))
793 ;; asynchronous tangle, using emacs-async to asynchronously tangle an
794 ;; org file. closely inspired by
795 ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
796 (with-eval-after-load 'org
797 (defvar b/show-async-tangle-results nil
798 "Keep *emacs* async buffers around for later inspection.")
800 (defvar b/show-async-tangle-time nil
801 "Show the time spent tangling the file.")
803 (defun b/async-babel-tangle ()
804 "Tangle org file asynchronously."
806 (let* ((file-tangle-start-time (current-time))
807 (file (buffer-file-name))
808 (file-nodir (file-name-nondirectory file))
809 ;; (async-quiet-switch "-q")
810 (file-noext (file-name-sans-extension file)))
814 (org-babel-tangle-file ,file))
815 (unless b/show-async-tangle-results
818 (message "Tangled %s%s"
820 (if b/show-async-tangle-time
822 (float-time (time-subtract (current-time)
823 ',file-tangle-start-time)))
825 (message "Tangling %s failed" ,file-nodir))))))))
828 'safe-local-variable-values
829 '(eval add-hook 'after-save-hook #'b/async-babel-tangle 'append 'local))
831 ;; *the* right way to do git
834 :bind (("C-x g" . magit-status)
835 ("C-c g g" . magit-status)
836 ("C-c g b" . magit-blame-addition)
837 ("C-c g l" . magit-log-buffer-file))
839 (magit-add-section-hook 'magit-status-sections-hook
840 'magit-insert-modules
841 'magit-insert-stashes
843 ;; (magit-add-section-hook 'magit-status-sections-hook
844 ;; 'magit-insert-ignored-files
845 ;; 'magit-insert-untracked-files
847 (setq magit-repository-directories '(("~/" . 0)
849 (nconc magit-section-initial-visibility-alist
850 '(([unpulled status] . show)
851 ([unpushed status] . show)))
852 :custom (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1)
853 :custom-face (magit-diff-file-heading ((t (:weight normal)))))
855 ;; recently opened files
859 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
861 (recentf-max-saved-items 2000))
863 ;; smart M-x enhancement (needed by counsel for history)
870 (:map ivy-minibuffer-map
871 ([escape] . keyboard-escape-quit)
872 ([S-up] . ivy-previous-history-element)
873 ([S-down] . ivy-next-history-element)
874 ("DEL" . ivy-backward-delete-char))
878 ivy-use-virtual-buffers t
879 ivy-virtual-abbreviate 'abbreviate
880 ivy-count-format "%d/%d ")
882 (defvar b/ivy-ignore-buffer-modes '(magit-mode erc-mode dired-mode))
883 (defun b/ivy-ignore-buffer-p (str)
884 "Return non-nil if str names a buffer with a major mode
885 derived from one of `b/ivy-ignore-buffer-modes'.
887 This function is intended for use with `ivy-ignore-buffers'."
888 (let* ((buf (get-buffer str))
889 (mode (and buf (buffer-local-value 'major-mode buf))))
891 (apply #'provided-mode-derived-p mode b/ivy-ignore-buffer-modes))))
892 (add-to-list 'ivy-ignore-buffers 'b/ivy-ignore-buffer-p)
896 ;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold))))
897 ;; (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold))))
898 ;; (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold))))
903 :bind (("C-s" . swiper-isearch)
905 ("C-S-s" . isearch-forward)))
910 :bind (([remap execute-extended-command] . counsel-M-x)
911 ([remap find-file] . counsel-find-file)
912 ("C-c b b" . ivy-switch-buffer)
913 ("C-c f ." . counsel-find-file)
914 ("C-c f l" . counsel-find-library)
915 ("C-c f r" . counsel-recentf)
916 ("C-c x" . counsel-M-x)
917 :map minibuffer-local-map
918 ("C-r" . counsel-minibuffer-history))
921 (defalias 'locate #'counsel-locate))
925 :commands (helm-M-x helm-mini helm-resume)
926 :bind (("M-x" . helm-M-x)
927 ("M-y" . helm-show-kill-ring)
928 ("C-x b" . helm-mini)
929 ("C-x C-b" . helm-buffers-list)
930 ("C-x C-f" . helm-find-files)
931 ("C-h r" . helm-info-emacs)
932 ("C-s-r" . helm-resume)
934 ("<tab>" . helm-execute-persistent-action)
935 ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals
936 ("C-z" . helm-select-action)) ; List actions
937 :config (helm-mode 1)))
942 :bind ("C-c a s e" . eshell)
944 (eval-when-compile (defvar eshell-prompt-regexp))
945 (defun b/eshell-quit-or-delete-char (arg)
947 (if (and (eolp) (looking-back eshell-prompt-regexp nil))
948 (eshell-life-is-too-much)
951 (defun b/eshell-clear ()
953 (let ((inhibit-read-only t))
957 (defun b/eshell-setup ()
958 (make-local-variable 'company-idle-delay)
959 (defvar company-idle-delay)
960 (setq company-idle-delay nil)
961 (bind-keys :map eshell-mode-map
962 ("C-d" . b/eshell-quit-or-delete-char)
963 ("C-S-l" . b/eshell-clear)
964 ("M-r" . counsel-esh-history)
965 ([tab] . company-complete)))
967 :hook (eshell-mode . b/eshell-setup)
969 (eshell-hist-ignoredups t)
970 (eshell-input-filter 'eshell-input-filter-initial-space))
974 (("C-x C-b" . ibuffer)
975 :map ibuffer-mode-map
976 ("P" . ibuffer-backward-filter-group)
977 ("N" . ibuffer-forward-filter-group)
978 ("M-p" . ibuffer-do-print)
979 ("M-n" . ibuffer-do-shell-command-pipe-replace))
981 ;; Use human readable Size column instead of original one
982 (define-ibuffer-column size-h
983 (:name "Size" :inline t)
985 ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0)))
986 ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0)))
987 ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0)))
988 (t (format "%8d" (buffer-size)))))
990 (ibuffer-saved-filter-groups
992 ("dired" (mode . dired-mode))
993 ("org" (mode . org-mode))
996 (mode . gnus-group-mode)
997 (mode . gnus-summary-mode)
998 (mode . gnus-article-mode)
999 ;; not really, but...
1000 (mode . message-mode)))
1009 (mode . eshell-mode)
1011 (mode . term-mode)))
1014 (mode . python-mode)
1018 (mode . emacs-lisp-mode)
1019 (mode . scheme-mode)
1020 (mode . haskell-mode)
1023 (mode . alloy-mode)))
1026 (mode . bibtex-mode)
1027 (mode . latex-mode)))
1030 (name . "^\\*scratch\\*$")
1031 (name . "^\\*Messages\\*$")))
1032 ("erc" (mode . erc-mode)))))
1034 '((mark modified read-only locked " "
1035 (name 18 18 :left :elide)
1037 (size-h 9 -1 :right)
1039 (mode 16 16 :left :elide)
1040 " " filename-and-process)
1044 :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
1046 (use-feature outline
1048 :hook (prog-mode . outline-minor-mode)
1049 :delight (outline-minor-mode " outl")
1052 outline-minor-mode-map
1053 ("<s-tab>" . outline-toggle-children)
1054 ("M-p" . outline-previous-visible-heading)
1055 ("M-n" . outline-next-visible-heading)
1056 :prefix-map b/outline-prefix-map
1058 ("TAB" . outline-toggle-children)
1059 ("a" . outline-hide-body)
1060 ("H" . outline-hide-body)
1061 ("S" . outline-show-all)
1062 ("h" . outline-hide-subtree)
1063 ("s" . outline-show-subtree)))
1065 (use-feature ls-lisp
1066 :custom (ls-lisp-dirs-first t))
1070 (setq dired-listing-switches "-alh"
1071 ls-lisp-use-insert-directory-program nil)
1073 ;; easily diff 2 marked files
1074 ;; https://oremacs.com/2017/03/18/dired-ediff/
1075 (defun dired-ediff-files ()
1077 (require 'dired-aux)
1078 (defvar ediff-after-quit-hook-internal)
1079 (let ((files (dired-get-marked-files))
1080 (wnd (current-window-configuration)))
1081 (if (<= (length files) 2)
1082 (let ((file1 (car files))
1083 (file2 (if (cdr files)
1087 (dired-dwim-target-directory)))))
1088 (if (file-newer-than-file-p file1 file2)
1089 (ediff-files file2 file1)
1090 (ediff-files file1 file2))
1091 (add-hook 'ediff-after-quit-hook-internal
1093 (setq ediff-after-quit-hook-internal nil)
1094 (set-window-configuration wnd))))
1095 (error "no more than 2 files should be marked"))))
1098 (setq dired-guess-shell-alist-user
1099 '(("\\.pdf\\'" "evince" "zathura" "okular")
1100 ("\\.doc\\'" "libreoffice")
1101 ("\\.docx\\'" "libreoffice")
1102 ("\\.ppt\\'" "libreoffice")
1103 ("\\.pptx\\'" "libreoffice")
1104 ("\\.xls\\'" "libreoffice")
1105 ("\\.xlsx\\'" "libreoffice")
1106 ("\\.flac\\'" "mpv")))
1107 :bind (:map dired-mode-map
1108 ("b" . dired-up-directory)
1109 ("e" . dired-ediff-files)
1110 ("E" . dired-toggle-read-only)
1111 ("\\" . dired-hide-details-mode)
1114 (b/dired-start-process "zathura"))))
1115 :hook (dired-mode . dired-hide-details-mode))
1119 (temp-buffer-resize-mode)
1120 (setq help-window-select t))
1124 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
1125 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
1126 (add-to-list 'tramp-default-proxies-alist
1127 (list (regexp-quote (system-name)) nil nil)))
1130 :config (dash-enable-font-lock))
1132 (use-feature doc-view
1133 :bind (:map doc-view-mode-map
1134 ("M-RET" . image-previous-line)))
1139 ;; highlight uncommitted changes in the left fringe
1140 (use-package diff-hl
1143 (setq diff-hl-draw-borders nil)
1144 (global-diff-hl-mode)
1145 :hook (magit-post-refresh . diff-hl-magit-post-refresh))
1147 ;; display Lisp objects at point in the echo area
1149 :when (version< "25" emacs-version)
1151 :config (global-eldoc-mode))
1153 ;; highlight matching parens
1156 :config (show-paren-mode))
1158 (use-feature elec-pair
1160 :config (electric-pair-mode))
1163 :delight (auto-fill-function " fill")
1164 :config (column-number-mode)
1166 ;; Save what I copy into clipboard from other applications into Emacs'
1167 ;; kill-ring, which would allow me to still be able to easily access
1168 ;; it in case I kill (cut or copy) something else inside Emacs before
1169 ;; yanking (pasting) what I'd originally intended to.
1170 (save-interprogram-paste-before-kill t))
1172 ;; save minibuffer history
1173 (use-feature savehist
1177 (add-to-list 'savehist-additional-variables 'kill-ring))
1179 ;; automatically save place in files
1180 (use-feature saveplace
1181 :when (version< "25" emacs-version)
1182 :config (save-place-mode))
1184 (use-feature prog-mode
1185 :config (global-prettify-symbols-mode)
1186 (defun indicate-buffer-boundaries-left ()
1187 (setq indicate-buffer-boundaries 'left))
1188 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
1190 (use-feature text-mode
1191 :hook (text-mode . indicate-buffer-boundaries-left))
1193 (use-feature conf-mode
1196 (use-feature sh-mode
1199 (use-package company
1203 (:map company-active-map
1204 ([tab] . company-complete-common-or-cycle)
1205 ([escape] . company-abort))
1207 (company-minimum-prefix-length 1)
1208 (company-selection-wrap-around t)
1209 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
1210 (company-dabbrev-downcase nil)
1211 (company-dabbrev-ignore-case nil)
1213 (global-company-mode t))
1215 (use-package flycheck
1217 :hook (prog-mode . flycheck-mode)
1219 (:map flycheck-mode-map
1220 ("M-P" . flycheck-previous-error)
1221 ("M-N" . flycheck-next-error))
1223 ;; Use the load-path from running Emacs when checking elisp files
1224 (setq flycheck-emacs-lisp-load-path 'inherit)
1226 ;; Only flycheck when I actually save the buffer
1227 (setq flycheck-check-syntax-automatically '(mode-enabled save))
1228 :custom (flycheck-mode-line-prefix "flyc"))
1230 (use-feature flyspell
1233 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
1237 ;; ’ can be part of a word
1238 (setq ispell-local-dictionary-alist
1239 `((nil "[[:alpha:]]" "[^[:alpha:]]"
1240 "['\x2019]" nil ("-B") nil utf-8))
1241 ispell-program-name (executable-find "hunspell"))
1242 ;; don't send ’ to the subprocess
1243 (defun endless/replace-apostrophe (args)
1244 (cons (replace-regexp-in-string
1247 (advice-add #'ispell-send-string :filter-args
1248 #'endless/replace-apostrophe)
1250 ;; convert ' back to ’ from the subprocess
1251 (defun endless/replace-quote (args)
1252 (if (not (derived-mode-p 'org-mode))
1254 (cons (replace-regexp-in-string
1257 (advice-add #'ispell-parse-output :filter-args
1258 #'endless/replace-quote))
1262 :hook (text-mode . abbrev-mode))
1265 ;;; Programming modes
1267 (use-feature lisp-mode
1269 (defun indent-spaces-mode ()
1270 (setq indent-tabs-mode nil))
1271 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
1274 :delight (reveal-mode " reveal")
1275 :hook (emacs-lisp-mode . reveal-mode))
1277 (use-feature elisp-mode
1278 :delight (emacs-lisp-mode "Elisp" :major))
1281 (use-package alloy-mode
1282 :straight (:host github :repo "dwwmmn/alloy-mode")
1284 :config (setq alloy-basic-offset 2))
1286 (eval-when-compile (defvar lean-mode-map))
1287 (use-package lean-mode
1288 :straight (:host github :repo "leanprover/lean-mode"
1289 :fork (:repo "notbandali/lean-mode" :branch "remove-cl"))
1291 :bind (:map lean-mode-map
1292 ("S-SPC" . company-complete))
1294 (require 'lean-input)
1295 (setq default-input-method "Lean"
1296 lean-input-tweak-all '(lean-input-compose
1297 (lean-input-prepend "/")
1298 (lean-input-nonempty))
1299 lean-input-user-translations '(("/" "/")))
1303 (use-package proof-site ; for Coq
1304 :straight proof-general)
1306 (use-package haskell-mode
1308 (setq haskell-indentation-layout-offset 4
1309 haskell-indentation-left-offset 4
1310 flycheck-checker 'haskell-hlint
1311 flycheck-disabled-checkers '(haskell-stack-ghc haskell-ghc)))
1315 :commands dante-mode
1316 :hook (haskell-mode . dante-mode))
1318 (use-package hlint-refactor
1320 :bind (:map hlint-refactor-mode-map
1321 ("C-c l b" . hlint-refactor-refactor-buffer)
1322 ("C-c l r" . hlint-refactor-refactor-at-point))
1323 :hook (haskell-mode . hlint-refactor-mode))
1325 (use-package flycheck-haskell
1326 :after haskell-mode)
1327 ;; alternative: hs-lint https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el
1330 (use-feature sgml-mode
1332 (setq sgml-basic-offset 2))
1334 (use-feature css-mode
1336 (setq css-indent-offset 2))
1338 (use-package web-mode
1342 web-mode-code-indent-offset
1343 web-mode-css-indent-offset
1344 web-mode-markup-indent-offset))
1346 (use-package emmet-mode
1347 :after (:any web-mode css-mode sgml-mode)
1348 :bind* (("C-)" . emmet-next-edit-point)
1349 ("C-(" . emmet-prev-edit-point))
1351 (unbind-key "C-j" emmet-mode-keymap)
1352 (setq emmet-move-cursor-between-quotes t)
1353 :hook (web-mode css-mode html-mode sgml-mode))
1356 (use-package meghanada
1358 (:map meghanada-mode-map
1359 (("C-M-o" . meghanada-optimize-import)
1360 ("C-M-t" . meghanada-import-all)))
1361 :hook (java-mode . meghanada-mode)))
1364 (use-package treemacs
1365 :config (setq treemacs-never-persist t))
1367 (use-package yasnippet
1369 ;; (yas-global-mode)
1372 (use-package lsp-mode
1373 :init (setq lsp-eldoc-render-all nil
1374 lsp-highlight-symbol-at-point nil)
1379 (use-package company-lsp
1382 (setq company-lsp-cache-candidates t
1383 company-lsp-async t))
1387 (setq lsp-ui-sideline-update-mode 'point))
1389 (use-package lsp-java
1391 (add-hook 'java-mode-hook
1393 (setq-local company-backends (list 'company-lsp))))
1395 (add-hook 'java-mode-hook 'lsp-java-enable)
1396 (add-hook 'java-mode-hook 'flycheck-mode)
1397 (add-hook 'java-mode-hook 'company-mode)
1398 (add-hook 'java-mode-hook 'lsp-ui-mode))
1400 (use-package dap-mode
1406 (use-package dap-java
1409 (use-package lsp-java-treemacs
1414 :bind (:map eclim-mode-map ("S-SPC" . company-complete))
1415 :hook ((java-mode . eclim-mode)
1416 (eclim-mode . (lambda ()
1417 (make-local-variable 'company-idle-delay)
1418 (defvar company-idle-delay)
1419 ;; (setq company-idle-delay 0.7)
1420 (setq company-idle-delay nil))))
1422 (eclim-auto-save nil)
1423 ;; (eclimd-default-workspace "~/src/eclipse-workspace-exp")
1424 (eclim-executable "~/.p2/pool/plugins/org.eclim_2.8.0/bin/eclim")
1425 (eclim-eclipse-dirs '("~/usr/eclipse/dsl-2018-09/eclipse"))))
1427 (use-package geiser)
1429 (use-feature geiser-guile
1431 (setq geiser-guile-load-path "~/src/git/guix"))
1438 (font-latex-fontify-sectioning 'color)))
1440 (use-package go-mode)
1442 (use-package po-mode
1444 (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit))))
1446 (use-feature tex-mode
1449 (lambda (p) (string-match "^---?" (car p)))
1450 tex--prettify-symbols-alist)
1451 :hook ((tex-mode . auto-fill-mode)
1452 (tex-mode . flyspell-mode)))
1457 (add-to-list 'custom-theme-load-path
1459 (convert-standard-filename "lisp") user-emacs-directory))
1460 (load-theme 'tangomod t)
1462 (use-package smart-mode-line
1463 :commands (sml/apply-theme)
1467 (smart-mode-line-enable))
1469 (use-package doom-modeline
1472 :hook (after-init . doom-modeline-init)
1474 (doom-modeline-buffer-file-name-style 'relative-to-project))
1476 (use-package doom-themes)
1478 (defvar b/org-mode-font-lock-keywords
1479 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
1480 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
1481 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
1482 (4 '(:foreground "#c5c8c6") t)))) ; title
1484 (defun b/lights-on ()
1485 "Enable my favourite light theme."
1487 (mapc #'disable-theme custom-enabled-themes)
1488 (load-theme 'tangomod t)
1489 (sml/apply-theme 'automatic)
1490 (font-lock-remove-keywords
1491 'org-mode b/org-mode-font-lock-keywords))
1493 (defun b/lights-off ()
1496 (mapc #'disable-theme custom-enabled-themes)
1497 (load-theme 'doom-tomorrow-night t)
1498 (sml/apply-theme 'automatic)
1499 (font-lock-add-keywords
1500 'org-mode b/org-mode-font-lock-keywords t))
1503 ("C-c t d" . b/lights-off)
1504 ("C-c t l" . b/lights-on))
1507 ;;; Emacs enhancements & auxiliary packages
1510 :config (setq Man-width 80))
1512 (use-package which-key
1516 (which-key-add-key-based-replacements
1517 ;; prefixes for global prefixes and minor modes
1521 "C-c 8 -" "typo/dashes"
1522 "C-c 8 <" "typo/left-brackets"
1523 "C-c 8 >" "typo/right-brackets"
1525 "C-x a" "abbrev/expand"
1526 "C-x r" "rectangle/register/bookmark"
1527 "C-x v" "version control"
1528 ;; prefixes for my personal bindings
1529 "C-c a" "applications"
1534 "C-c c" "compile-and-comments"
1540 "C-c m" "multiple-cursors"
1541 "C-c P" "projectile"
1542 "C-c P s" "projectile/search"
1543 "C-c P x" "projectile/execute"
1544 "C-c P 4" "projectile/other-window"
1550 ;; prefixes for major modes
1551 (which-key-add-major-mode-key-based-replacements 'message-mode
1552 "C-c f n" "footnote")
1553 (which-key-add-major-mode-key-based-replacements 'org-mode
1554 "C-c C-v" "org-babel")
1555 (which-key-add-major-mode-key-based-replacements 'web-mode
1556 "C-c C-a" "web/attributes"
1557 "C-c C-b" "web/blocks"
1559 "C-c C-e" "web/element"
1560 "C-c C-t" "web/tags")
1564 (which-key-add-column-padding 5)
1565 (which-key-max-description-length 32))
1567 (use-package crux ; results in Waiting for git... [2 times]
1569 :bind (("C-c d" . crux-duplicate-current-line-or-region)
1570 ("C-c D" . crux-duplicate-and-comment-current-line-or-region)
1571 ("C-c f C" . crux-copy-file-preserve-attributes)
1572 ("C-c f D" . crux-delete-file-and-buffer)
1573 ("C-c f R" . crux-rename-file-and-buffer)
1574 ("C-c j" . crux-top-join-line)
1575 ("C-S-j" . crux-top-join-line)))
1578 :bind (("C-a" . mwim-beginning-of-code-or-line)
1579 ("C-e" . mwim-end-of-code-or-line)
1580 ("<home>" . mwim-beginning-of-line-or-code)
1581 ("<end>" . mwim-end-of-line-or-code)))
1583 (use-package projectile
1585 :bind-keymap ("C-c P" . projectile-command-map)
1589 (defun b/projectile-mode-line-fun ()
1590 "Report project name and type in the modeline."
1591 (let ((project-name (projectile-project-name))
1592 (project-type (projectile-project-type)))
1594 projectile-mode-line-prefix
1596 (format ":%s" project-type)
1598 (setq projectile-mode-line-function 'b/projectile-mode-line-fun)
1600 (defun my-projectile-invalidate-cache (&rest _args)
1601 ;; ignore the args to `magit-checkout'
1602 (projectile-invalidate-cache nil))
1604 (eval-after-load 'magit-branch
1606 (advice-add 'magit-checkout
1607 :after #'my-projectile-invalidate-cache)
1608 (advice-add 'magit-branch-and-checkout
1609 :after #'my-projectile-invalidate-cache)))
1611 (projectile-completion-system 'ivy)
1612 (projectile-mode-line-prefix " proj"))
1614 (use-package helpful
1617 (("C-S-h c" . helpful-command)
1618 ("C-S-h f" . helpful-callable) ; helpful-function
1619 ("C-S-h v" . helpful-variable)
1620 ("C-S-h k" . helpful-key)
1621 ("C-S-h p" . helpful-at-point)))
1623 (use-package unkillable-scratch
1626 (unkillable-scratch 1)
1628 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1631 ;; | make pretty boxed quotes like this
1633 (use-package boxquote
1636 (:prefix-map b/boxquote-prefix-map
1638 ("b" . boxquote-buffer)
1639 ("B" . boxquote-insert-buffer)
1640 ("d" . boxquote-defun)
1641 ("F" . boxquote-insert-file)
1642 ("hf" . boxquote-describe-function)
1643 ("hk" . boxquote-describe-key)
1644 ("hv" . boxquote-describe-variable)
1645 ("hw" . boxquote-where-is)
1646 ("k" . boxquote-kill)
1647 ("p" . boxquote-paragraph)
1648 ("q" . boxquote-boxquote)
1649 ("r" . boxquote-region)
1650 ("s" . boxquote-shell-command)
1651 ("t" . boxquote-text)
1652 ("T" . boxquote-title)
1653 ("u" . boxquote-unbox)
1654 ("U" . boxquote-unbox-region)
1655 ("y" . boxquote-yank)
1656 ("M-q" . boxquote-fill-paragraph)
1657 ("M-w" . boxquote-kill-ring-save)))
1659 (use-package orgalist
1660 ;; http://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00007.html
1663 :hook (message-mode . orgalist-mode))
1665 ;; easily type pretty quotes & other typography, like ‘’“”-–—«»‹›
1670 (typo-global-mode 1)
1671 :hook (((text-mode erc-mode) . typo-mode)
1672 (tex-mode . (lambda ()(typo-mode -1)))))
1674 ;; highlight TODOs in buffers
1675 (use-package hl-todo
1678 (global-hl-todo-mode))
1680 (use-package shrink-path
1684 (defvar user-@-host (concat (user-login-name) "@" (system-name) " "))
1685 (defun +eshell/prompt ()
1686 (let ((base/dir (shrink-path-prompt default-directory)))
1687 (concat (propertize user-@-host 'face 'default)
1688 (propertize (car base/dir)
1689 'face 'font-lock-comment-face)
1690 (propertize (cdr base/dir)
1691 'face 'font-lock-constant-face)
1692 (propertize "> " 'face 'default))))
1693 (setq eshell-prompt-regexp (concat user-@-host ".*> ")
1694 eshell-prompt-function #'+eshell/prompt))
1696 (use-package eshell-up
1698 :commands eshell-up)
1700 (use-package multi-term
1703 :bind (("C-c a s m m" . multi-term)
1704 ("C-c a s m d" . multi-term-dedicated-toggle)
1705 ("C-c a s m p" . multi-term-prev)
1706 ("C-c a s m n" . multi-term-next)
1708 ("C-c C-j" . term-char-mode))
1710 (setq multi-term-program "screen"
1711 multi-term-program-switches (concat "-c"
1712 (getenv "XDG_CONFIG_HOME")
1714 ;; TODO: add separate bindings for connecting to existing
1715 ;; session vs. always creating a new one
1716 multi-term-dedicated-select-after-open-p t
1717 multi-term-dedicated-window-height 20
1718 multi-term-dedicated-max-window-height 30
1720 '(("C-c C-c" . term-interrupt-subjob)
1721 ("C-c C-e" . term-send-esc)
1722 ("C-c C-j" . term-line-mode)
1724 ;; ("C-y" . term-paste)
1725 ("C-y" . term-send-raw)
1726 ("M-f" . term-send-forward-word)
1727 ("M-b" . term-send-backward-word)
1728 ("M-p" . term-send-up)
1729 ("M-n" . term-send-down)
1730 ("M-j" . term-send-raw-meta)
1731 ("M-y" . term-send-raw-meta)
1732 ("M-/" . term-send-raw-meta)
1733 ("M-0" . term-send-raw-meta)
1734 ("M-1" . term-send-raw-meta)
1735 ("M-2" . term-send-raw-meta)
1736 ("M-3" . term-send-raw-meta)
1737 ("M-4" . term-send-raw-meta)
1738 ("M-5" . term-send-raw-meta)
1739 ("M-6" . term-send-raw-meta)
1740 ("M-7" . term-send-raw-meta)
1741 ("M-8" . term-send-raw-meta)
1742 ("M-9" . term-send-raw-meta)
1743 ("<C-backspace>" . term-send-backward-kill-word)
1744 ("<M-DEL>" . term-send-backward-kill-word)
1745 ("M-d" . term-send-delete-word)
1746 ("M-," . term-send-raw)
1747 ("M-." . comint-dynamic-complete))
1748 term-unbind-key-alist
1749 '("C-z" "C-x" "C-c" "C-h"
1753 (use-package page-break-lines
1757 (page-break-lines-max-width fill-column)
1759 (global-page-break-lines-mode))
1761 (use-package expand-region
1762 :bind ("C-=" . er/expand-region))
1764 (use-package multiple-cursors
1766 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
1767 (:prefix-map b/mc-prefix-map
1769 ("c" . mc/edit-lines)
1770 ("n" . mc/mark-next-like-this)
1771 ("p" . mc/mark-previous-like-this)
1772 ("a" . mc/mark-all-like-this))))
1780 (use-package yasnippet
1783 (defconst yas-verbosity-cur yas-verbosity)
1784 (setq yas-verbosity 2)
1785 (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
1787 (setq yas-verbosity yas-verbosity-cur)
1789 (defun b/yas--maybe-expand-key-filter (cmd)
1790 (when (and (yas--maybe-expand-key-filter cmd)
1791 (not (bound-and-true-p git-commit-mode)))
1793 (defconst b/yas-maybe-expand
1794 '(menu-item "" yas-expand :filter b/yas--maybe-expand-key-filter))
1795 (define-key yas-minor-mode-map
1796 (kbd "SPC") b/yas-maybe-expand)
1800 (use-package debbugs
1803 :repo "emacs-straight/debbugs"
1804 :files (:defaults "Debbugs.wsdl")))
1806 (use-package org-ref
1808 (b/setq-every '("~/usr/org/references.bib")
1809 reftex-default-bibliography
1810 org-ref-default-bibliography)
1812 org-ref-bibliography-notes "~/usr/org/notes.org"
1813 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1817 :init (setq alert-default-style 'notifications))
1819 ;; (use-package fill-column-indicator)
1821 (use-package emojify
1822 :hook (erc-mode . emojify-mode))
1826 (("C-c w <right>" . split-window-right)
1827 ("C-c w <down>" . split-window-below)
1828 ("C-c w s l" . split-window-right)
1829 ("C-c w s j" . split-window-below)
1830 ("C-c w q" . quit-window))
1832 (split-width-threshold 150))
1834 (use-feature windmove
1837 (("C-c w h" . windmove-left)
1838 ("C-c w j" . windmove-down)
1839 ("C-c w k" . windmove-up)
1840 ("C-c w l" . windmove-right)
1841 ("C-c w H" . windmove-swap-states-left)
1842 ("C-c w J" . windmove-swap-states-down)
1843 ("C-c w K" . windmove-swap-states-up)
1844 ("C-c w L" . windmove-swap-states-right)))
1848 :bind ("C-c a p" . pass)
1849 :hook (pass-mode . View-exit))
1851 (use-package pdf-tools
1853 :bind (:map pdf-view-mode-map
1854 ("<C-XF86Back>" . pdf-history-backward)
1855 ("<mouse-8>" . pdf-history-backward)
1856 ("<drag-mouse-8>" . pdf-history-backward)
1857 ("<C-XF86Forward>" . pdf-history-forward)
1858 ("<mouse-9>" . pdf-history-forward)
1859 ("<drag-mouse-9>" . pdf-history-forward)
1860 ("M-RET" . image-previous-line))
1861 :config (pdf-tools-install nil t)
1862 :custom (pdf-view-resize-factor 1.05))
1864 (use-package biblio)
1867 :hook (latex-mode . reftex-mode))
1869 (use-feature reftex-cite
1871 :disabled ; enable to disable
1872 ; reftex-cite's default choice
1875 (defun reftex-get-bibkey-default ()
1876 "If the cursor is in a citation macro, return the word before the macro."
1877 (let* ((macro (reftex-what-macro 1)))
1879 (when (and macro (string-match "cite" (car macro)))
1880 (goto-char (cdr macro)))
1881 (reftex-this-word)))))
1884 ;;; Email (with Gnus)
1886 (defvar b/maildir (expand-file-name "~/mail/"))
1887 (with-eval-after-load 'recentf
1888 (add-to-list 'recentf-exclude b/maildir))
1891 b/gnus-init-file (b/etc "gnus")
1892 mail-user-agent 'gnus-user-agent
1893 read-mail-command 'gnus)
1896 :bind (("s-m" . gnus)
1897 ("s-M" . gnus-unplugged)
1899 ("C-c a M" . gnus-unplugged))
1902 gnus-select-method '(nnnil "")
1903 gnus-secondary-select-methods
1904 '((nnimap "shemshak"
1905 (nnimap-stream plain)
1906 (nnimap-address "127.0.0.1")
1907 (nnimap-server-port 143)
1908 (nnimap-authenticator plain)
1909 (nnimap-user "amin@shemshak.local"))
1911 (nnimap-stream plain)
1912 (nnimap-address "127.0.0.1")
1913 (nnimap-server-port 143)
1914 (nnimap-authenticator plain)
1915 (nnimap-user "bandali@gnu.local")
1916 (nnimap-inbox "INBOX")
1917 (nnimap-split-methods 'nnimap-split-fancy)
1918 (nnimap-split-fancy (|
1919 ;; (: gnus-registry-split-fancy-with-parent)
1920 ;; (: gnus-group-split-fancy "INBOX" t "INBOX")
1922 (list ".*<\\(.*\\)\\.\\(non\\)?gnu\\.org>.*" "l.\\1")
1923 ;; *@lists.sr.ht, omitting one dot if present
1924 ;; add more \\.?\\([^.@]*\\) if needed
1925 (list ".*<~\\(.*\\)/\\([^.@]*\\)\\.?\\([^.@]*\\)@lists.sr.ht>.*" "l.~\\1.\\2\\3")
1927 (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters")
1929 (list ".*atreus.freelists.org" "l.atreus")
1930 (list ".*deepspec.lists.cs.princeton.edu" "l.deepspec")
1931 ;; (list ".*haskell-art.we.lurk.org" "l.haskell.art") ;d
1932 (list ".*haskell-cafe.haskell.org" "l.haskell-cafe")
1933 ;; (list ".*notmuch.notmuchmail.org" "l.notmuch") ;u
1934 ;; (list ".*dev.lists.parabola.nu" "l.parabola-dev") ;u
1935 ;; ----------------------------------
1936 ;; legend: (u)nsubscribed | (d)ead
1937 ;; ----------------------------------
1938 ;; otherwise, leave mail in INBOX
1941 (nnimap-stream plain)
1942 (nnimap-address "127.0.0.1")
1943 (nnimap-server-port 143)
1944 (nnimap-authenticator plain)
1945 (nnimap-user "abandali@uw.local")
1946 (nnimap-inbox "INBOX")
1947 (nnimap-split-methods 'nnimap-split-fancy)
1948 (nnimap-split-fancy (|
1949 ;; (: gnus-registry-split-fancy-with-parent)
1951 ("subject" "SE\\s-?212" "course.se212-f19")
1952 (from "SE\\s-?212" "course.se212-f19")
1956 (nnimap-stream plain)
1957 (nnimap-address "127.0.0.1")
1958 (nnimap-server-port 143)
1959 (nnimap-authenticator plain)
1960 (nnimap-user "abandali@csc.uw.local")))
1961 gnus-message-archive-group "nnimap+shemshak:Sent"
1964 (to-address . "atreus@freelists.org")
1965 (to-list . "atreus@freelists.org"))
1967 (to-address . "deepspec@lists.cs.princeton.edu")
1968 (to-list . "deepspec@lists.cs.princeton.edu")
1969 (list-identifier . "\\[deepspec\\]"))
1971 (to-address . "emacs-devel@gnu.org")
1972 (to-list . "emacs-devel@gnu.org"))
1973 ("l\\.help-gnu-emacs"
1974 (to-address . "help-gnu-emacs@gnu.org")
1975 (to-list . "help-gnu-emacs@gnu.org"))
1976 ("l\\.info-gnu-emacs"
1977 (to-address . "info-gnu-emacs@gnu.org")
1978 (to-list . "info-gnu-emacs@gnu.org"))
1979 ("l\\.emacs-orgmode"
1980 (to-address . "emacs-orgmode@gnu.org")
1981 (to-list . "emacs-orgmode@gnu.org")
1982 (list-identifier . "\\[O\\]"))
1983 ("l\\.emacs-tangents"
1984 (to-address . "emacs-tangents@gnu.org")
1985 (to-list . "emacs-tangents@gnu.org"))
1986 ("l\\.emacsconf-discuss"
1987 (to-address . "emacsconf-discuss@gnu.org")
1988 (to-list . "emacsconf-discuss@gnu.org"))
1989 ("l\\.emacsconf-register"
1990 (to-address . "emacsconf-register@gnu.org")
1991 (to-list . "emacsconf-register@gnu.org"))
1992 ("l\\.emacsconf-submit"
1993 (to-address . "emacsconf-submit@gnu.org")
1994 (to-list . "emacsconf-submit@gnu.org"))
1995 ("l\\.fencepost-users"
1996 (to-address . "fencepost-users@gnu.org")
1997 (to-list . "fencepost-users@gnu.org")
1998 (list-identifier . "\\[Fencepost-users\\]"))
1999 ("l\\.gnewsense-art"
2000 (to-address . "gnewsense-art@nongnu.org")
2001 (to-list . "gnewsense-art@nongnu.org")
2002 (list-identifier . "\\[gNewSense-art\\]"))
2003 ("l\\.gnewsense-dev"
2004 (to-address . "gnewsense-dev@nongnu.org")
2005 (to-list . "gnewsense-dev@nongnu.org")
2006 (list-identifier . "\\[Gnewsense-dev\\]"))
2007 ("l\\.gnewsense-users"
2008 (to-address . "gnewsense-users@nongnu.org")
2009 (to-list . "gnewsense-users@nongnu.org")
2010 (list-identifier . "\\[gNewSense-users\\]"))
2011 ("l\\.gnunet-developers"
2012 (to-address . "gnunet-developers@gnu.org")
2013 (to-list . "gnunet-developers@gnu.org")
2014 (list-identifier . "\\[GNUnet-developers\\]"))
2016 (to-address . "help-gnunet@gnu.org")
2017 (to-list . "help-gnunet@gnu.org")
2018 (list-identifier . "\\[Help-gnunet\\]"))
2020 (to-address . "bug-gnuzilla@gnu.org")
2021 (to-list . "bug-gnuzilla@gnu.org")
2022 (list-identifier . "\\[Bug-gnuzilla\\]"))
2024 (to-address . "gnuzilla-dev@gnu.org")
2025 (to-list . "gnuzilla-dev@gnu.org")
2026 (list-identifier . "\\[Gnuzilla-dev\\]"))
2028 (to-address . "guile-devel@gnu.org")
2029 (to-list . "guile-devel@gnu.org"))
2031 (to-address . "guile-user@gnu.org")
2032 (to-list . "guile-user@gnu.org"))
2034 (to-address . "guix-devel@gnu.org")
2035 (to-list . "guix-devel@gnu.org"))
2037 (to-address . "help-guix@gnu.org")
2038 (to-list . "help-guix@gnu.org"))
2040 (to-address . "info-guix@gnu.org")
2041 (to-list . "info-guix@gnu.org"))
2042 ("l\\.savannah-hackers-public"
2043 (to-address . "savannah-hackers-public@gnu.org")
2044 (to-list . "savannah-hackers-public@gnu.org"))
2045 ("l\\.savannah-users"
2046 (to-address . "savannah-users@gnu.org")
2047 (to-list . "savannah-users@gnu.org"))
2049 (to-address . "www-commits@gnu.org")
2050 (to-list . "www-commits@gnu.org"))
2052 (to-address . "www-discuss@gnu.org")
2053 (to-list . "www-discuss@gnu.org"))
2055 (to-address . "haskell-art@we.lurk.org")
2056 (to-list . "haskell-art@we.lurk.org")
2057 (list-identifier . "\\[haskell-art\\]"))
2059 (to-address . "haskell-cafe@haskell.org")
2060 (to-list . "haskell-cafe@haskell.org")
2061 (list-identifier . "\\[Haskell-cafe\\]"))
2063 (to-address . "notmuch@notmuchmail.org")
2064 (to-list . "notmuch@notmuchmail.org"))
2066 (to-address . "dev@lists.parabola.nu")
2067 (to-list . "dev@lists.parabola.nu")
2068 (list-identifier . "\\[Dev\\]"))
2069 ("l\\.~bandali\\.public-inbox"
2070 (to-address . "~bandali/public-inbox@lists.sr.ht")
2071 (to-list . "~bandali/public-inbox@lists.sr.ht"))
2072 ("l\\.~sircmpwn\\.free-writers-club"
2073 (to-address . "~sircmpwn/free-writers-club@lists.sr.ht")
2074 (to-list . "~sircmpwn/free-writers-club@lists.sr.ht"))
2075 ("l\\.~sircmpwn\\.srht-admins"
2076 (to-address . "~sircmpwn/sr.ht-admins@lists.sr.ht")
2077 (to-list . "~sircmpwn/sr.ht-admins@lists.sr.ht"))
2078 ("l\\.~sircmpwn\\.srht-announce"
2079 (to-address . "~sircmpwn/sr.ht-announce@lists.sr.ht")
2080 (to-list . "~sircmpwn/sr.ht-announce@lists.sr.ht"))
2081 ("l\\.~sircmpwn\\.srht-dev"
2082 (to-address . "~sircmpwn/sr.ht-dev@lists.sr.ht")
2083 (to-list . "~sircmpwn/sr.ht-dev@lists.sr.ht"))
2084 ("l\\.~sircmpwn\\.srht-discuss"
2085 (to-address . "~sircmpwn/sr.ht-discuss@lists.sr.ht")
2086 (to-list . "~sircmpwn/sr.ht-discuss@lists.sr.ht"))
2088 (to-address . "webmasters@gnu.org")
2089 (to-list . "webmasters@gnu.org"))
2096 gnus-large-newsgroup 50
2097 gnus-home-directory (b/var "gnus/")
2098 gnus-directory (concat gnus-home-directory "news/")
2099 message-directory (concat gnus-home-directory "mail/")
2100 nndraft-directory (concat gnus-home-directory "drafts/")
2101 gnus-save-newsrc-file nil
2102 gnus-read-newsrc-file nil
2103 gnus-interactive-exit nil
2104 gnus-gcc-mark-as-read t)
2108 (require 'ebdb-gnus)
2110 (when (version< emacs-version "27")
2112 'nnmail-split-abbrev-alist
2113 '(list . "list-id\\|list-post\\|x-mailing-list\\|x-beenthere\\|x-loop")
2116 ;; (gnus-registry-initialize)
2118 (with-eval-after-load 'recentf
2119 (add-to-list 'recentf-exclude gnus-home-directory)))
2121 (use-feature gnus-art
2124 gnus-buttonized-mime-types '("multipart/\\(signed\\|encrypted\\)")
2125 gnus-visible-headers
2126 (concat gnus-visible-headers "\\|^List-Id:\\|^X-RT-Originator:\\|^User-Agent:")
2127 gnus-sorted-header-list
2128 '("^From:" "^Subject:" "^Summary:" "^Keywords:"
2129 "^Followup-To:" "^To:" "^Cc:" "X-RT-Originator"
2130 "^Newsgroups:" "List-Id:" "^Organization:"
2131 "^User-Agent:" "^Date:")
2132 ;; local-lapsed article dates
2133 ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11
2134 gnus-article-date-headers '(user-defined)
2135 gnus-article-time-format
2137 (let* ((date (format-time-string "%a, %d %b %Y %T %z" time))
2138 (local (article-make-date-line date 'local))
2139 (combined-lapsed (article-make-date-line date
2142 (string-match " (.+" combined-lapsed)
2143 (match-string 0 combined-lapsed))))
2144 (concat local lapsed))))
2146 :map gnus-article-mode-map
2147 ("M-L" . org-store-link)))
2149 (use-feature gnus-sum
2150 :bind (:map gnus-summary-mode-map
2151 :prefix-map b/gnus-summary-prefix-map
2153 ("r" . gnus-summary-reply)
2154 ("w" . gnus-summary-wide-reply)
2155 ("v" . gnus-summary-show-raw-article))
2158 :map gnus-summary-mode-map
2159 ("M-L" . org-store-link))
2160 :hook (gnus-summary-mode . b/no-mouse-autoselect-window)
2162 (gnus-thread-sort-functions '(gnus-thread-sort-by-number
2163 gnus-thread-sort-by-subject
2164 gnus-thread-sort-by-date)))
2166 (use-feature gnus-msg
2168 (defvar b/signature "Amin Bandali
2169 Free Software Activist | GNU Webmaster & Volunteer
2170 GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103
2171 https://shemshak.org/~amin")
2172 (defvar b/gnu-signature "Amin Bandali
2173 Free Software Activist | GNU Webmaster & Volunteer
2174 GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103
2175 https://bandali.eu.org")
2176 (defvar b/uw-signature "Amin Bandali, MMath Student
2177 Cheriton School of Computer Science
2178 University of Waterloo
2179 https://bandali.eu.org")
2180 (defvar b/csc-signature "Amin Bandali
2182 Computer Science Club, University of Waterloo
2183 https://csclub.uwaterloo.ca/~abandali")
2184 (setq gnus-posting-styles
2186 (address "amin@shemshak.org")
2188 (signature b/signature)
2189 (eval (setq b/message-cite-say-hi t)))
2191 (address "bandali@gnu.org")
2192 (signature b/gnu-signature)
2193 (eval (set (make-local-variable 'message-user-fqdn) "fencepost.gnu.org")))
2194 ((header "subject" "ThankCRM")
2195 (to "webmasters-comment@gnu.org")
2197 (eval (setq b/message-cite-say-hi nil)))
2199 (address "abandali@uwaterloo.ca")
2200 (signature b/uw-signature))
2201 ("nnimap\\+uw:INBOX"
2202 (gcc "\"nnimap+uw:Sent Items\""))
2204 (address "abandali@csclub.uwaterloo.ca")
2205 (signature b/csc-signature)
2206 (gcc "nnimap+csc:Sent")))))
2208 (use-feature gnus-topic
2209 :hook (gnus-group-mode . gnus-topic-mode)
2210 :config (setq gnus-topic-line-format "%i[ %A: %(%{%n%}%) ]%v\n"))
2212 (use-feature gnus-agent
2214 (setq gnus-agent-synchronize-flags 'ask)
2215 :hook (gnus-group-mode . gnus-agent-mode))
2217 (use-feature gnus-group
2219 (setq gnus-permanently-visible-groups "\\(:INBOX$\\|:gnu$\\)"))
2222 ;; problematic with ebdb's popup, *EBDB-Gnus*
2223 (use-feature gnus-win
2225 (setq gnus-use-full-window nil)))
2227 (use-feature gnus-dired
2228 :commands gnus-dired-mode
2230 (add-hook 'dired-mode-hook 'gnus-dired-mode))
2232 (use-feature mm-decode
2234 (setq mm-discouraged-alternatives '("text/html" "text/richtext")
2235 mm-decrypt-option 'known
2236 mm-verify-option 'known))
2240 (mm-uu-diff-groups-regexp
2241 "\\(gmane\\|gnu\\|l\\)\\..*\\(diff\\|commit\\|cvs\\|bug\\|dev\\)"))
2243 (use-feature sendmail
2245 (setq sendmail-program (executable-find "msmtp")
2246 ;; message-sendmail-extra-arguments '("-v" "-d")
2247 mail-specify-envelope-from t
2248 mail-envelope-from 'header))
2250 (use-feature message
2252 ;; redefine for a simplified In-Reply-To header
2253 ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67)
2254 (defun message-make-in-reply-to ()
2255 "Return the In-Reply-To header for this message."
2256 (when message-reply-headers
2257 (let ((from (mail-header-from message-reply-headers))
2258 (msg-id (mail-header-id message-reply-headers)))
2262 (defconst b/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:")
2263 (defconst message-cite-style-bandali
2264 '((message-cite-function 'message-cite-original)
2265 (message-citation-line-function 'message-insert-formatted-citation-line)
2266 (message-cite-reply-position 'traditional)
2267 (message-yank-prefix "> ")
2268 (message-yank-cited-prefix ">")
2269 (message-yank-empty-prefix ">")
2270 (message-citation-line-format
2271 (if b/message-cite-say-hi
2272 (concat "Hi %F,\n\n" b/message-cite-style-format)
2273 b/message-cite-style-format)))
2274 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
2275 (setq ;; message-cite-style 'message-cite-style-bandali
2276 message-kill-buffer-on-exit t
2277 message-send-mail-function 'message-send-mail-with-sendmail
2278 message-sendmail-envelope-from 'header
2279 message-subscribed-address-functions
2280 '(gnus-find-subscribed-addresses)
2281 message-dont-reply-to-names
2282 "\\(\\(\\(amin\\|mab\\)@shemshak\\.org\\)\\|\\(amin@bndl\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|\\(a\\(min\\.\\)?bandali@uwaterloo\\.ca\\)\\|\\(abandali@csclub\\.uwaterloo\\.ca\\)\\)")
2283 (require 'company-ebdb)
2284 :hook (;; (message-setup . mml-secure-message-sign-pgpmime)
2285 (message-mode . flyspell-mode)
2286 (message-mode . (lambda ()
2287 ;; (setq fill-column 65
2288 ;; message-fill-column 65)
2289 (make-local-variable 'company-idle-delay)
2290 (setq company-idle-delay 0.2))))
2292 ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
2293 ;; (message-header-to ((t (:foreground "#111" :weight normal))))
2294 ;; (message-header-cc ((t (:foreground "#333" :weight normal))))
2296 (message-elide-ellipsis "[...]\n"))
2301 (use-feature mml-sec
2303 (mml-secure-openpgp-encrypt-to-self t)
2304 (mml-secure-openpgp-sign-with-sender t))
2306 (use-feature footnote
2309 ;; (setq footnote-start-tag ""
2310 ;; footnote-end-tag ""
2311 ;; footnote-style 'unicode)
2313 (:map message-mode-map
2314 :prefix-map b/footnote-prefix-map
2316 ("a" . footnote-add-footnote)
2317 ("b" . footnote-back-to-message)
2318 ("c" . footnote-cycle-style)
2319 ("d" . footnote-delete-footnote)
2320 ("g" . footnote-goto-footnote)
2321 ("r" . footnote-renumber-footnotes)
2322 ("s" . footnote-set-style)))
2326 :bind (:map gnus-group-mode-map ("e" . ebdb))
2328 (setq ebdb-sources (b/var "ebdb"))
2329 (with-eval-after-load 'swiper
2330 (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t)))
2332 (use-feature ebdb-com
2335 ;; (use-package ebdb-complete
2338 ;; (ebdb-complete-enable))
2340 (use-package company-ebdb
2342 (defun company-ebdb--post-complete (_) nil))
2344 (use-feature ebdb-gnus
2347 (ebdb-gnus-window-size 0.3))
2349 (use-feature ebdb-mua
2351 ;; :custom (ebdb-mua-pop-up nil)
2354 ;; (use-package ebdb-message
2357 ;; (use-package ebdb-vcard
2360 (use-package message-x)
2363 (use-package message-x
2365 (message-x-completion-alist
2367 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address)
2370 (quote message-newgroups-header-regexp))
2371 message-newgroups-header-regexp message-newsgroups-header-regexp)
2372 . message-expand-group))))))
2375 (use-package gnus-harvest
2376 :commands gnus-harvest-install
2379 (if (featurep 'message-x)
2380 (gnus-harvest-install 'message-x)
2381 (gnus-harvest-install))))
2383 (use-feature gnus-article-treat-patch
2388 ;; note: be sure to customize faces with `:foreground "white"' when
2389 ;; using a theme with a white/light background :)
2390 (setq ft/gnus-article-patch-conditions
2391 '("^@@ -[0-9]+,[0-9]+ \\+[0-9]+,[0-9]+ @@")))
2394 ;;; IRC (with ERC and ZNC)
2397 :bind (("C-c b e" . erc-switch-to-buffer)
2399 ("M-a" . erc-track-switch-buffer))
2401 (erc-join-buffer 'bury)
2402 (erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
2403 (erc-nick "bandali")
2405 (erc-rename-buffers t)
2406 (erc-server-reconnect-attempts 5)
2407 (erc-server-reconnect-timeout 3)
2409 (defun erc-cmd-OPME ()
2410 "Request chanserv to op me."
2411 (erc-message "PRIVMSG"
2412 (format "chanserv op %s %s"
2413 (erc-default-target)
2414 (erc-current-nick)) nil))
2415 (defun erc-cmd-DEOPME ()
2416 "Deop myself from current channel."
2417 (erc-cmd-DEOP (format "%s" (erc-current-nick))))
2418 (add-to-list 'erc-modules 'keep-place)
2419 (add-to-list 'erc-modules 'notifications)
2420 (add-to-list 'erc-modules 'spelling)
2421 (add-to-list 'erc-modules 'scrolltoplace)
2422 (erc-update-modules)
2424 (when (and (version<= "24.4" emacs-version)
2425 (version< emacs-version "27"))
2426 ;; fix erc-lurker bug
2427 ;; patch submitted: https://bugs.gnu.org/36843#10
2428 ;; TODO: remove when patch is merged and emacs 27 is released
2429 (defvar erc-message-parsed)
2430 (defun erc-display-message (parsed type buffer msg &rest args)
2431 "Display MSG in BUFFER.
2433 ARGS, PARSED, and TYPE are used to format MSG sensibly.
2435 See also `erc-format-message' and `erc-display-line'."
2436 (let ((string (if (symbolp msg)
2437 (apply #'erc-format-message msg args)
2439 (erc-message-parsed parsed))
2445 (mapc (lambda (type)
2447 (erc-display-message-highlight type string)))
2451 (erc-display-message-highlight type string))))
2453 (if (not (erc-response-p parsed))
2454 (erc-display-line string buffer)
2455 (unless (erc-hide-current-message-p parsed)
2456 (erc-put-text-property 0 (length string) 'erc-parsed parsed string)
2457 (erc-put-text-property 0 (length string) 'rear-sticky t string)
2458 (when (erc-response.tags parsed)
2459 (erc-put-text-property 0 (length string) 'tags (erc-response.tags parsed)
2461 (erc-display-line string buffer)))))
2463 (defun erc-lurker-update-status (_message)
2464 "Update `erc-lurker-state' if necessary.
2466 This function is called from `erc-insert-pre-hook'. If the
2467 current message is a PRIVMSG, update `erc-lurker-state' to
2468 reflect the fact that its sender has issued a PRIVMSG at the
2469 current time. Otherwise, take no action.
2471 This function depends on the fact that `erc-display-message'
2472 lexically binds `erc-message-parsed', which is used to check if
2473 the current message is a PRIVMSG and to determine its sender.
2474 See also `erc-lurker-trim-nicks' and `erc-lurker-ignore-chars'.
2476 In order to limit memory consumption, this function also calls
2477 `erc-lurker-cleanup' once every `erc-lurker-cleanup-interval'
2478 updates of `erc-lurker-state'."
2479 (when (and (boundp 'erc-message-parsed)
2480 (erc-response-p erc-message-parsed))
2481 (let* ((command (erc-response.command erc-message-parsed))
2483 (erc-lurker-maybe-trim
2484 (car (erc-parse-user (erc-response.sender erc-message-parsed)))))
2486 (erc-canonicalize-server-name erc-server-announced-name)))
2487 (when (equal command "PRIVMSG")
2488 (when (>= (cl-incf erc-lurker-cleanup-count)
2489 erc-lurker-cleanup-interval)
2490 (setq erc-lurker-cleanup-count 0)
2491 (erc-lurker-cleanup))
2492 (unless (gethash server erc-lurker-state)
2493 (puthash server (make-hash-table :test 'equal) erc-lurker-state))
2494 (puthash sender (current-time)
2495 (gethash server erc-lurker-state))))))))
2497 (use-feature erc-fill
2500 (erc-fill-column 77)
2501 (erc-fill-function 'erc-fill-static)
2502 (erc-fill-static-center 18))
2504 (use-feature erc-pcomplete
2507 (erc-pcomplete-nick-postfix ","))
2509 (use-feature erc-track
2511 :bind (("C-c a e t d" . erc-track-disable)
2512 ("C-c a e t e" . erc-track-enable))
2514 (erc-track-enable-keybindings nil)
2515 (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT"
2516 "324" "329" "332" "333" "353" "477"))
2517 (erc-track-priority-faces-only 'all)
2518 (erc-track-shorten-function nil))
2520 (use-package erc-hl-nicks
2523 (use-package erc-scrolltoplace
2527 :straight (:host nil :repo "https://git.shemshak.org/amin/znc.el")
2528 :bind (("C-c a e e" . znc-erc)
2529 ("C-c a e a" . znc-all))
2531 (let ((pwd (let ((auth (auth-source-search :host "znca")))
2533 ((null auth) (error "Couldn't find znca's authinfo"))
2534 (t (funcall (plist-get (car auth) :secret)))))))
2536 `(("znc.shemshak.org" 1337 t
2537 ((freenode "amin/freenode" ,pwd)))
2538 ("znc.shemshak.org" 1337 t
2539 ((moznet "amin/moznet" ,pwd)))
2540 ("znc.shemshak.org" 1337 t
2541 ((oftc "amin/oftc" ,pwd)))))))
2544 ;;; Post initialization
2546 (message "Loading %s...done (%.3fs)" user-init-file
2547 (float-time (time-subtract (current-time)
2548 b/before-user-init-time)))
2550 ;;; init.el ends here