1 ;;; init.el --- Amin Bandali's Emacs config -*- 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 advocate. 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 a
/before-user-init-time
(current-time)
41 "Value of `current-time' when Emacs begins loading `user-init-file'.")
42 (message "Loading Emacs...done (%.3fs)"
43 (float-time (time-subtract a
/before-user-init-time
46 ;; temporarily increase `gc-cons-threshhold' and `gc-cons-percentage'
47 ;; during startup to reduce garbage collection frequency. clearing
48 ;; `file-name-handler-alist' seems to help reduce startup time too.
49 (defvar a
/gc-cons-threshold gc-cons-threshold
)
50 (defvar a
/gc-cons-percentage gc-cons-percentage
)
51 (defvar a
/file-name-handler-alist file-name-handler-alist
)
52 (setq gc-cons-threshold
(* 400 1024 1024) ; 400 MiB
53 gc-cons-percentage
0.6
54 file-name-handler-alist nil
55 ;; sidesteps a bug when profiling with esup
56 esup-child-profile-require-level
0)
58 ;; set them back to their defaults once we're done initializing
60 (setq gc-cons-threshold a
/gc-cons-threshold
61 gc-cons-percentage a
/gc-cons-percentage
62 file-name-handler-alist a
/file-name-handler-alist
))
63 (add-hook 'after-init-hook
#'a
/post-init
)
65 ;; increase number of lines kept in *Messages* log
66 (setq message-log-max
20000)
68 ;; optionally, uncomment to supress some byte-compiler warnings
69 ;; (see C-h v byte-compile-warnings RET for more info)
70 ;; (setq byte-compile-warnings
71 ;; '(not free-vars unresolved noruntime lexical make-local))
76 (setq user-full-name
"Amin Bandali"
77 user-mail-address
"amin@bndl.org")
82 ;; useful for commenting out multiple sexps at a time
83 (defmacro comment
(&rest _
)
84 "Comment out one or more s-expressions."
85 (declare (indent defun
))
89 ;;; Package management
91 ;; No package.el (for emacs 26 and before, uncomment the following)
92 ;; Not necessary when using straight.el
93 ;; (C-h v straight-package-neutering-mode RET)
96 (not (featurep 'straight
))
97 (version< emacs-version
"27"))
98 (setq package-enable-at-startup nil
)
99 ;; (package-initialize)
102 ;; for emacs 27 and later, we use early-init.el. see
103 ;; https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=24acb31c04b4048b85311d794e600ecd7ce60d3b
107 ;; Main engine start...
109 (setq straight-repository-branch
"develop"
110 straight-check-for-modifications
'(check-on-save find-when-checking
))
112 (defun a/bootstrap-straight
()
113 (defvar bootstrap-version
)
114 (let ((bootstrap-file
115 (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory
))
116 (bootstrap-version 5))
117 (unless (file-exists-p bootstrap-file
)
119 (url-retrieve-synchronously
120 "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
121 'silent
'inhibit-cookies
)
122 (goto-char (point-max))
123 (eval-print-last-sexp)))
124 (load bootstrap-file nil
'nomessage
)))
126 ;; Solid rocket booster ignition...
128 (a/bootstrap-straight
)
132 (setq straight-use-package-by-default t
)
134 (defmacro use-feature
(name &rest args
)
135 "Like `use-package', but with `straight-use-package-by-default' disabled."
136 (declare (indent defun
))
141 (with-eval-after-load 'recentf
142 (add-to-list 'recentf-exclude
143 (expand-file-name "~/.emacs.d/straight/build/")))
145 (defun a/reload-init
()
148 (setq a
/file-name-handler-alist file-name-handler-alist
)
149 (load user-init-file nil
'nomessage
)
153 (straight-use-package 'use-package
)
154 (if nil
; set to t when need to debug init
156 (setq use-package-verbose t
157 use-package-expand-minimally nil
158 use-package-compute-statistics t
160 (require 'use-package
))
161 (setq use-package-verbose nil
162 use-package-expand-minimally t
))
164 (setq use-package-always-defer t
)
167 ;; for browsing the Emacsmirror package database
170 :commands
(epkg-list-packages epkg-describe-package
)
172 (("C-c p e d" . epkg-describe-package
)
173 ("C-c p e p" . epkg-list-packages
))
175 (setq epkg-repository
"~/.emacs.d/straight/repos/epkgs/")
176 (eval-when-compile (defvar ivy-initial-inputs-alist
))
177 (with-eval-after-load 'ivy
179 'ivy-initial-inputs-alist
'(epkg-describe-package .
"^") t
))))
184 ;; keep ~/.emacs.d clean
185 (use-package no-littering
189 (add-to-list 'savehist-additional-variables
'kill-ring
)
191 (setq auto-save-file-name-transforms
192 `((".*" ,(no-littering-expand-var-file-name "auto-save/") t
))))
194 ;; separate custom file (don't want it mixing with init.el)
198 (setq custom-file
(no-littering-expand-etc-file-name "custom.el"))
199 (when (file-exists-p custom-file
)
201 ;; while at it, treat themes as safe
202 (setf custom-safe-themes t
))
204 ;; load the secrets file if it exists, otherwise show a warning
206 (load (no-littering-expand-etc-file-name "secrets")))
208 ;; better $PATH (and other environment variable) handling
209 (use-package exec-path-from-shell
212 (setq exec-path-from-shell-arguments nil
213 exec-path-from-shell-check-startup-files nil
)
215 (exec-path-from-shell-initialize)
216 ;; while we're at it, let's fix access to our running ssh-agent
217 (exec-path-from-shell-copy-env "SSH_AGENT_PID")
218 (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
220 ;; only one custom theme at a time
222 (defadvice load-theme
(before clear-previous-themes activate
)
223 "Clear existing theme settings instead of layering them"
224 (mapc #'disable-theme custom-enabled-themes
)))
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)))
234 (dolist (ft (fontset-list))
238 (font-spec :name
"Source Code Pro" :size
14))
242 (font-spec :name
"DejaVu Sans Mono")
249 ;; :name "Symbola monospacified for DejaVu Sans Mono")
255 ;; (font-spec :name "DejaVu Sans Mono")
261 (font-spec :name
"DejaVu Sans Mono" :size
14)
265 ;; gentler font resizing
266 (setq text-scale-mode-step
1.05)
268 ;; focus follows mouse
269 (setq mouse-autoselect-window t
)
271 (defun a/no-mouse-autoselect-window
()
272 "Conveniently disable `focus-follows-mouse'.
273 For disabling the behaviour for certain buffers and/or modes."
274 (make-local-variable 'mouse-autoselect-window
)
275 (setq mouse-autoselect-window nil
))
278 (setq ;; scroll-margin 1
279 ;; scroll-conservatively 10000
281 scroll-conservatively
10
282 scroll-preserve-screen-position
1)
287 (setq mouse-wheel-scroll-amount
'(1 ((shift) .
1)) ; one line at a time
288 mouse-wheel-progressive-speed nil
; don't accelerate scrolling
289 mouse-wheel-follow-mouse t
)) ; scroll window under mouse
291 (use-feature pixel-scroll
293 :config
(pixel-scroll-mode 1))
295 ;; ask for GPG passphrase in minibuffer
296 (setq epg-pinentry-mode
'loopback
)
305 (defmacro a
/setq-every
(value &rest vars
)
306 "Set all the variables from VARS to value VALUE."
307 (declare (indent defun
) (debug t
))
308 `(progn ,@(mapcar (lambda (x) (list 'setq x value
)) vars
)))
310 (defun a/start-process
(program &rest args
)
311 "Same as `start-process', but doesn't bother about name and buffer."
312 (let ((process-name (concat program
"_process"))
313 (buffer-name (generate-new-buffer-name
314 (concat program
"_output"))))
315 (apply #'start-process
316 process-name buffer-name program args
)))
318 (defun a/dired-start-process
(program &optional args
)
319 "Open current file with a PROGRAM."
320 ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can
321 ;; be nil, so remove it).
322 (apply #'a
/start-process
324 (remove nil
(list args
(dired-get-file-for-visit)))))
326 (defun a/add-elisp-section
()
330 (insert "\n\f\n;;; "))
335 ;; time and battery in mode-line
339 (setq display-time-default-load-average nil
)
345 (display-battery-mode)))
348 ;; (fringe-mode '(3 . 1))
351 ;; disable disabled commands
352 (setq disabled-command-function nil
)
354 ;; Save what I copy into clipboard from other applications into Emacs'
355 ;; kill-ring, which would allow me to still be able to easily access
356 ;; it in case I kill (cut or copy) something else inside Emacs before
357 ;; yanking (pasting) what I'd originally intended to.
358 (setq save-interprogram-paste-before-kill t
)
361 (setq enable-recursive-minibuffers t
362 resize-mini-windows t
)
364 ;; lazy-person-friendly yes/no prompts
365 (defalias 'yes-or-no-p
#'y-or-n-p
)
367 ;; i want *scratch* as my startup buffer
368 (setq initial-buffer-choice t
)
370 ;; i don't need the default hint
371 (setq initial-scratch-message nil
)
373 ;; use customizable text-mode as major mode for *scratch*
374 (setq initial-major-mode
'text-mode
)
376 ;; inhibit buffer list when more than 2 files are loaded
377 (setq inhibit-startup-buffer-menu t
)
379 ;; don't need to see the startup screen or the echo area message
380 (advice-add #'display-startup-echo-area-message
:override
#'ignore
)
381 (setq inhibit-startup-screen t
382 inhibit-startup-echo-area-message user-login-name
)
384 ;; more useful frame titles
385 (setq frame-title-format
386 '("" invocation-name
" - "
387 (:eval
(if (buffer-file-name)
388 (abbreviate-file-name (buffer-file-name))
391 ;; backups (C-h v make-backup-files RET)
392 (setq backup-by-copying t
394 delete-old-versions t
)
396 ;; enable automatic reloading of changed buffers and files
397 (global-auto-revert-mode 1)
398 (setq auto-revert-verbose nil
399 global-auto-revert-non-file-buffers nil
)
401 ;; always use space for indentation
404 require-final-newline t
407 ;; enable winner-mode (C-h f winner-mode RET)
410 ;; don't display *compilation* buffer on success. based on
411 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
412 ;; instead of the now obsolete `flet'.
413 (with-eval-after-load 'compile
414 (defun a/compilation-finish-function
(buffer outstr
)
415 (unless (string-match "finished" outstr
)
416 (switch-to-buffer-other-window buffer
))
419 (setq compilation-finish-functions
#'a
/compilation-finish-function
)
423 (defadvice compilation-start
424 (around inhibit-display
425 (command &optional mode name-function highlight-regexp
))
426 (if (not (string-match "^\\(find\\|grep\\)" command
))
427 (cl-letf (((symbol-function 'display-buffer
) #'ignore
))
428 (save-window-excursion ad-do-it
))
430 (ad-activate 'compilation-start
))
432 ;; search for non-ASCII characters: i’d like non-ASCII characters such
433 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
434 ;; counterpart. shoutout to
435 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
436 (setq search-default-mode
#'char-fold-to-regexp
)
437 ;; uncomment to extend this behaviour to query-replace
438 ;; (setq replace-char-fold t)
441 (setq-default cursor-type
'bar
)
443 ;; allow scrolling in Isearch
444 (setq isearch-allow-scroll t
)
447 :bind
("C-x v C-=" . vc-ediff
))
450 :config
(add-hook 'ediff-after-quit-hook-internal
'winner-undo
)
451 :custom
((ediff-window-setup-function 'ediff-setup-windows-plain
)
452 (ediff-split-window-function 'split-window-horizontally
)))
460 ("C-c e b" . eval-buffer
)
461 ("C-c e r" . eval-region
)
463 ("C-c e i" . emacs-init-time
)
464 ("C-c e u" . emacs-uptime
)
466 ("C-c F m" . make-frame-command
)
467 ("C-c F d" . delete-frame
)
468 ("C-c F D" . server-edit
)
470 ("C-c o" . other-window
)
472 ("C-S-h C" . describe-char
)
473 ("C-S-h F" . describe-face
)
475 ("C-x k" . kill-this-buffer
)
476 ("C-x K" . kill-buffer
)
478 ("s-p" . beginning-of-buffer
)
479 ("s-n" . end-of-buffer
)
481 :map emacs-lisp-mode-map
482 ("<C-return>" . a
/add-elisp-section
))
484 (when (display-graphic-p)
485 (unbind-key "C-z" global-map
))
488 :prefix-map a
/straight-prefix-map
490 ("u" . straight-use-package
)
491 ("f" . straight-freeze-versions
)
492 ("t" . straight-thaw-versions
)
493 ("P" . straight-prune-build
)
494 ("g" . straight-get-recipe
)
495 ("r" . a
/reload-init
)
496 ;; M-x ^straight-.*-all$
497 ("a c" . straight-check-all
)
498 ("a f" . straight-fetch-all
)
499 ("a m" . straight-merge-all
)
500 ("a n" . straight-normalize-all
)
501 ("a F" . straight-pull-all
)
502 ("a P" . straight-push-all
)
503 ("a r" . straight-rebuild-all
)
504 ;; M-x ^straight-.*-package$
505 ("p c" . straight-check-package
)
506 ("p f" . straight-fetch-package
)
507 ("p m" . straight-merge-package
)
508 ("p n" . straight-normalize-package
)
509 ("p F" . straight-pull-package
)
510 ("p P" . straight-push-package
)
511 ("p r" . straight-rebuild-package
))
514 ;;; Essential packages
516 (use-package auto-compile
519 (auto-compile-on-load-mode)
520 (auto-compile-on-save-mode)
521 (setq auto-compile-display-buffer nil
522 auto-compile-mode-line-counter t
523 auto-compile-source-recreate-deletes-dest t
524 auto-compile-toggle-deletes-nonlib-dest t
525 auto-compile-update-autoloads t
)
526 (add-hook 'auto-compile-inhibit-compile-hook
527 'auto-compile-inhibit-compile-detached-git-head
))
529 ;; use the org-plus-contrib package to get the whole deal
530 (straight-use-package 'org-plus-contrib
)
535 (setq org-src-tab-acts-natively t
536 org-src-preserve-indentation nil
537 org-edit-src-content-indentation
0
538 org-link-email-description-format
"Email %c: %s" ; %.30s
539 org-highlight-latex-and-related
'(entities)
540 org-use-speed-commands t
541 org-startup-folded
'content
542 org-catch-invisible-edits
'show-and-error
544 (add-to-list 'org-structure-template-alist
'("L" .
"src emacs-lisp") t
)
546 (("C-c a o a" . org-agenda
)
548 ("M-L" . org-insert-last-stored-link
)
549 ("M-O" . org-toggle-link-display
)
551 :hook
((org-mode . org-indent-mode
)
552 (org-mode . auto-fill-mode
)
553 (org-mode . flyspell-mode
))
555 (org-agenda-files '("~/usr/org/todos/personal.org"
556 "~/usr/org/todos/masters.org"))
557 (org-agenda-start-on-weekday 0)
558 (org-latex-packages-alist '(("" "listings") ("" "color")))
560 '(org-block-begin-line ((t (:foreground
"#5a5b5a" :background
"#1d1f21"))))
561 '(org-block ((t (:background
"#1d1f21"))))
562 '(org-latex-and-related ((t (:foreground
"#b294bb")))))
564 (use-feature ox-latex
567 (setq org-latex-listings
'listings
568 ;; org-latex-prefer-user-labels t
570 (add-to-list 'org-latex-classes
571 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
572 ("\\section{%s}" .
"\\section*{%s}")
573 ("\\subsection{%s}" .
"\\subsection*{%s}")
574 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}")
575 ("\\paragraph{%s}" .
"\\paragraph*{%s}")
576 ("\\subparagraph{%s}" .
"\\subparagraph*{%s}"))
578 (require 'ox-beamer
))
580 (use-feature ox-extra
582 (ox-extras-activate '(latex-header-blocks ignore-headlines
)))
584 ;; asynchronous tangle, using emacs-async to asynchronously tangle an
585 ;; org file. closely inspired by
586 ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
587 (with-eval-after-load 'org
588 (defvar a
/show-async-tangle-results nil
589 "Keep *emacs* async buffers around for later inspection.")
591 (defvar a
/show-async-tangle-time nil
592 "Show the time spent tangling the file.")
594 (defun a/async-babel-tangle
()
595 "Tangle org file asynchronously."
597 (let* ((file-tangle-start-time (current-time))
598 (file (buffer-file-name))
599 (file-nodir (file-name-nondirectory file
))
600 ;; (async-quiet-switch "-q")
601 (file-noext (file-name-sans-extension file
)))
605 (org-babel-tangle-file ,file
))
606 (unless a
/show-async-tangle-results
609 (message "Tangled %s%s"
611 (if a
/show-async-tangle-time
613 (float-time (time-subtract (current-time)
614 ',file-tangle-start-time
)))
616 (message "Tangling %s failed" ,file-nodir
))))))))
619 'safe-local-variable-values
620 '(eval add-hook
'after-save-hook
#'a
/async-babel-tangle
'append
'local
))
622 ;; *the* right way to do git
625 :bind
(("C-x g" . magit-status
)
626 ("s-g s" . magit-status
)
627 ("s-g l" . magit-log-buffer-file
))
629 (magit-add-section-hook 'magit-status-sections-hook
630 'magit-insert-modules
631 'magit-insert-stashes
633 (setq magit-repository-directories
'(("~/" .
0)
635 (nconc magit-section-initial-visibility-alist
636 '(([unpulled status
] . show
)
637 ([unpushed status
] . show
)))
638 :custom
(magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1
)
639 :custom-face
(magit-diff-file-heading ((t (:weight normal
)))))
641 ;; recently opened files
645 (add-to-list 'recentf-exclude
"^/\\(?:ssh\\|su\\|sudo\\)?:")
646 (setq recentf-max-saved-items
40))
648 ;; smart M-x enhancement (needed by counsel for history)
654 (:map ivy-minibuffer-map
655 ([escape] . keyboard-escape-quit)
656 ([S-up] . ivy-previous-history-element)
657 ([S-down] . ivy-next-history-element)
658 ("DEL" . ivy-backward-delete-char))
662 ivy-use-virtual-buffers t
663 ivy-virtual-abbreviate 'abbreviate
664 ivy-count-format "%d/%d ")
667 ;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold))))
668 ;; (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold))))
669 ;; (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold))))
674 :bind (("C-s" . swiper-isearch)
676 ("C-S-s" . isearch-forward)))
680 :bind (([remap execute-extended-command] . counsel-M-x)
681 ([remap find-file] . counsel-find-file)
682 ("C-c x" . counsel-M-x)
683 ("C-c f ." . counsel-find-file)
684 ("C-c f l" . counsel-find-library)
685 ("C-c f r" . counsel-recentf)
686 ("s-." . counsel-find-file)
687 ("s-r" . ivy-switch-buffer)
688 :map minibuffer-local-map
689 ("C-r" . counsel-minibuffer-history))
692 (defalias 'locate #'counsel-locate))
696 :commands (helm-M-x helm-mini helm-resume)
697 :bind (("M-x" . helm-M-x)
698 ("M-y" . helm-show-kill-ring)
699 ("C-x b" . helm-mini)
700 ("C-x C-b" . helm-buffers-list)
701 ("C-x C-f" . helm-find-files)
702 ("C-h r" . helm-info-emacs)
703 ("s-r" . helm-recentf)
704 ("C-s-r" . helm-resume)
706 ("<tab>" . helm-execute-persistent-action)
707 ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals
708 ("C-z" . helm-select-action)) ; List actions
709 :config (helm-mode 1)))
714 :bind ("C-c a s e" . eshell)
716 (eval-when-compile (defvar eshell-prompt-regexp))
717 (defun a/eshell-quit-or-delete-char (arg)
719 (if (and (eolp) (looking-back eshell-prompt-regexp nil))
720 (eshell-life-is-too-much)
723 (defun a/eshell-clear ()
725 (let ((inhibit-read-only t))
729 (defun a/eshell-setup ()
730 (make-local-variable 'company-idle-delay)
731 (defvar company-idle-delay)
732 (setq company-idle-delay nil)
733 (bind-keys :map eshell-mode-map
734 ("C-d" . a/eshell-quit-or-delete-char)
735 ("C-S-l" . a/eshell-clear)
736 ("M-r" . counsel-esh-history)
737 ([tab] . company-complete)))
739 :hook (eshell-mode . a/eshell-setup)
741 (eshell-hist-ignoredups t)
742 (eshell-input-filter 'eshell-input-filter-initial-space))
746 (("C-x C-b" . ibuffer-other-window)
747 :map ibuffer-mode-map
748 ("P" . ibuffer-backward-filter-group)
749 ("N" . ibuffer-forward-filter-group)
750 ("M-p" . ibuffer-do-print)
751 ("M-n" . ibuffer-do-shell-command-pipe-replace))
753 ;; Use human readable Size column instead of original one
754 (define-ibuffer-column size-h
755 (:name "Size" :inline t)
757 ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0)))
758 ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0)))
759 ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0)))
760 (t (format "%8d" (buffer-size)))))
762 (ibuffer-saved-filter-groups
764 ("dired" (mode . dired-mode))
765 ("org" (mode . org-mode))
768 (mode . gnus-group-mode)
769 (mode . gnus-summary-mode)
770 (mode . gnus-article-mode)
771 ;; not really, but...
772 (mode . message-mode)))
790 (mode . emacs-lisp-mode)
792 (mode . haskell-mode)
795 (mode . alloy-mode)))
799 (mode . latex-mode)))
802 (name . "^\\*scratch\\*$")
803 (name . "^\\*Messages\\*$")))
804 ("erc" (mode . erc-mode)))))
806 '((mark modified read-only locked " "
807 (name 18 18 :left :elide)
811 (mode 16 16 :left :elide)
812 " " filename-and-process)
816 :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
819 :hook (prog-mode . outline-minor-mode)
822 outline-minor-mode-map
823 ("<s-tab>" . outline-toggle-children)
824 ("M-p" . outline-previous-visible-heading)
825 ("M-n" . outline-next-visible-heading)
826 :prefix-map a/outline-prefix-map
828 ("TAB" . outline-toggle-children)
829 ("a" . outline-hide-body)
830 ("H" . outline-hide-body)
831 ("S" . outline-show-all)
832 ("h" . outline-hide-subtree)
833 ("s" . outline-show-subtree)))
836 :custom (ls-lisp-dirs-first t))
840 (setq dired-listing-switches "-alh"
841 ls-lisp-use-insert-directory-program nil)
843 ;; easily diff 2 marked files
844 ;; https://oremacs.com/2017/03/18/dired-ediff/
845 (defun dired-ediff-files ()
848 (defvar ediff-after-quit-hook-internal)
849 (let ((files (dired-get-marked-files))
850 (wnd (current-window-configuration)))
851 (if (<= (length files) 2)
852 (let ((file1 (car files))
853 (file2 (if (cdr files)
857 (dired-dwim-target-directory)))))
858 (if (file-newer-than-file-p file1 file2)
859 (ediff-files file2 file1)
860 (ediff-files file1 file2))
861 (add-hook 'ediff-after-quit-hook-internal
863 (setq ediff-after-quit-hook-internal nil)
864 (set-window-configuration wnd))))
865 (error "no more than 2 files should be marked"))))
868 (setq dired-guess-shell-alist-user
869 '(("\\.pdf\\'" "evince" "zathura" "okular")
870 ("\\.doc\\'" "libreoffice")
871 ("\\.docx\\'" "libreoffice")
872 ("\\.ppt\\'" "libreoffice")
873 ("\\.pptx\\'" "libreoffice")
874 ("\\.xls\\'" "libreoffice")
875 ("\\.xlsx\\'" "libreoffice")
876 ("\\.flac\\'" "mpv")))
877 :bind (:map dired-mode-map
878 ("b" . dired-up-directory)
879 ("e" . dired-ediff-files)
880 ("E" . dired-toggle-read-only)
881 ("\\" . dired-hide-details-mode)
884 (a/dired-start-process "zathura"))))
885 :hook (dired-mode . dired-hide-details-mode))
889 (temp-buffer-resize-mode)
890 (setq help-window-select t))
894 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
895 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
896 (add-to-list 'tramp-default-proxies-alist
897 (list (regexp-quote (system-name)) nil nil)))
900 :config (dash-enable-font-lock))
902 (use-package doc-view
903 :bind (:map doc-view-mode-map
904 ("M-RET" . image-previous-line)))
909 ;; highlight uncommitted changes in the left fringe
913 (setq diff-hl-draw-borders nil)
914 (global-diff-hl-mode)
915 :hook (magit-post-refresh . diff-hl-magit-post-refresh))
917 ;; display Lisp objects at point in the echo area
919 :when (version< "25" emacs-version)
920 :config (global-eldoc-mode))
922 ;; highlight matching parens
925 :config (show-paren-mode))
928 :config (column-number-mode))
930 ;; save minibuffer history
931 (use-feature savehist
932 :config (savehist-mode))
934 ;; automatically save place in files
935 (use-feature saveplace
936 :when (version< "25" emacs-version)
937 :config (save-place-mode))
939 (use-feature prog-mode
940 :config (global-prettify-symbols-mode)
941 (defun indicate-buffer-boundaries-left ()
942 (setq indicate-buffer-boundaries 'left))
943 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
945 (use-feature text-mode
946 :hook ((text-mode . indicate-buffer-boundaries-left)
947 (text-mode . abbrev-mode)))
949 (use-feature conf-mode
958 (:map company-active-map
959 ([tab] . company-complete-common-or-cycle)
960 ([escape] . company-abort
))
962 (company-minimum-prefix-length 1)
963 (company-selection-wrap-around t
)
964 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
965 (company-dabbrev-downcase nil
)
966 (company-dabbrev-ignore-case nil
)
968 (global-company-mode t
))
970 (use-package flycheck
972 :hook
(prog-mode . flycheck-mode
)
974 (:map flycheck-mode-map
975 ("M-P" . flycheck-previous-error
)
976 ("M-N" . flycheck-next-error
))
978 ;; Use the load-path from running Emacs when checking elisp files
979 (setq flycheck-emacs-lisp-load-path
'inherit
)
981 ;; Only flycheck when I actually save the buffer
982 (setq flycheck-check-syntax-automatically
'(mode-enabled save
)))
984 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
988 ;; ’ can be part of a word
989 (setq ispell-local-dictionary-alist
990 `((nil "[[:alpha:]]" "[^[:alpha:]]"
991 "['\x2019]" nil
("-B") nil utf-8
)))
992 ;; don't send ’ to the subprocess
993 (defun endless/replace-apostrophe
(args)
994 (cons (replace-regexp-in-string
997 (advice-add #'ispell-send-string
:filter-args
998 #'endless
/replace-apostrophe
)
1000 ;; convert ' back to ’ from the subprocess
1001 (defun endless/replace-quote
(args)
1002 (if (not (derived-mode-p 'org-mode
))
1004 (cons (replace-regexp-in-string
1007 (advice-add #'ispell-parse-output
:filter-args
1008 #'endless
/replace-quote
))
1011 ;;; Programming modes
1013 (use-feature lisp-mode
1015 (add-hook 'emacs-lisp-mode-hook
'outline-minor-mode
)
1016 (add-hook 'emacs-lisp-mode-hook
'reveal-mode
)
1017 (defun indent-spaces-mode ()
1018 (setq indent-tabs-mode nil
))
1019 (add-hook 'lisp-interaction-mode-hook
#'indent-spaces-mode
))
1021 (use-package alloy-mode
1022 :straight
(:host github
:repo
"dwwmmn/alloy-mode")
1024 :config
(setq alloy-basic-offset
2))
1026 (use-package proof-site
; for Coq
1027 :straight proof-general
)
1029 (eval-when-compile (defvar lean-mode-map
))
1030 (use-package lean-mode
1032 :bind
(:map lean-mode-map
1033 ("S-SPC" . company-complete
))
1035 (require 'lean-input
)
1036 (setq default-input-method
"Lean"
1037 lean-input-tweak-all
'(lean-input-compose
1038 (lean-input-prepend "/")
1039 (lean-input-nonempty))
1040 lean-input-user-translations
'(("/" "/")))
1043 (use-package haskell-mode
1045 (setq haskell-indentation-layout-offset
4
1046 haskell-indentation-left-offset
4
1047 flycheck-checker
'haskell-hlint
1048 flycheck-disabled-checkers
'(haskell-stack-ghc haskell-ghc
)))
1052 :commands dante-mode
1053 :hook
(haskell-mode . dante-mode
))
1055 (use-package hlint-refactor
1057 :bind
(:map hlint-refactor-mode-map
1058 ("C-c l b" . hlint-refactor-refactor-buffer
)
1059 ("C-c l r" . hlint-refactor-refactor-at-point
))
1060 :hook
(haskell-mode . hlint-refactor-mode
))
1062 (use-package flycheck-haskell
1063 :after haskell-mode
)
1064 ;; alternative: hs-lint https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el
1066 (use-package sgml-mode
1068 (setq sgml-basic-offset
2))
1070 (use-package css-mode
1072 (setq css-indent-offset
2))
1074 (use-package web-mode
1078 web-mode-code-indent-offset
1079 web-mode-css-indent-offset
1080 web-mode-markup-indent-offset
))
1082 (use-package emmet-mode
1083 :after
(:any web-mode css-mode sgml-mode
)
1084 :bind
* (("C-)" . emmet-next-edit-point
)
1085 ("C-(" . emmet-prev-edit-point
))
1087 (unbind-key "C-j" emmet-mode-keymap
)
1088 (setq emmet-move-cursor-between-quotes t
)
1089 :hook
(web-mode css-mode html-mode sgml-mode
))
1092 (use-package meghanada
1094 (:map meghanada-mode-map
1095 (("C-M-o" . meghanada-optimize-import
)
1096 ("C-M-t" . meghanada-import-all
)))
1097 :hook
(java-mode . meghanada-mode
)))
1100 (use-package treemacs
1101 :config
(setq treemacs-never-persist t
))
1103 (use-package yasnippet
1105 ;; (yas-global-mode)
1108 (use-package lsp-mode
1109 :init
(setq lsp-eldoc-render-all nil
1110 lsp-highlight-symbol-at-point nil
)
1115 (use-package company-lsp
1118 (setq company-lsp-cache-candidates t
1119 company-lsp-async t
))
1123 (setq lsp-ui-sideline-update-mode
'point
))
1125 (use-package lsp-java
1127 (add-hook 'java-mode-hook
1129 (setq-local company-backends
(list 'company-lsp
))))
1131 (add-hook 'java-mode-hook
'lsp-java-enable
)
1132 (add-hook 'java-mode-hook
'flycheck-mode
)
1133 (add-hook 'java-mode-hook
'company-mode
)
1134 (add-hook 'java-mode-hook
'lsp-ui-mode
))
1136 (use-package dap-mode
1142 (use-package dap-java
1145 (use-package lsp-java-treemacs
1150 :bind
(:map eclim-mode-map
("S-SPC" . company-complete
))
1151 :hook
((java-mode . eclim-mode
)
1152 (eclim-mode .
(lambda ()
1153 (make-local-variable 'company-idle-delay
)
1154 (defvar company-idle-delay
)
1155 ;; (setq company-idle-delay 0.7)
1156 (setq company-idle-delay nil
))))
1158 (eclim-auto-save nil
)
1159 ;; (eclimd-default-workspace "~/src/eclipse-workspace-exp")
1160 (eclim-executable "~/.p2/pool/plugins/org.eclim_2.8.0/bin/eclim")
1161 (eclim-eclipse-dirs '("~/usr/eclipse/dsl-2018-09/eclipse"))))
1163 (use-package geiser
)
1165 (use-feature geiser-guile
1167 (setq geiser-guile-load-path
"~/src/git/guix"))
1174 (font-latex-fontify-sectioning 'color
)))
1176 (use-package go-mode
)
1181 (add-to-list 'custom-theme-load-path
"~/.emacs.d/lisp")
1182 (load-theme 'tangomod t
)
1184 (use-package smart-mode-line
1185 :commands
(sml/apply-theme
)
1190 (use-package doom-themes
)
1192 (defvar a
/org-mode-font-lock-keywords
1193 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
1194 (1 '(:foreground
"#5a5b5a" :background
"#292b2b") t
) ; directive
1195 (3 '(:foreground
"#81a2be" :background
"#292b2b") t
) ; kind
1196 (4 '(:foreground
"#c5c8c6") t
)))) ; title
1198 (defun a/lights-on
()
1199 "Enable my favourite light theme."
1201 (mapc #'disable-theme custom-enabled-themes
)
1202 (load-theme 'tangomod t
)
1203 (sml/apply-theme
'automatic
)
1204 (font-lock-remove-keywords
1205 'org-mode a
/org-mode-font-lock-keywords
))
1207 (defun a/lights-off
()
1210 (mapc #'disable-theme custom-enabled-themes
)
1211 (load-theme 'doom-tomorrow-night t
)
1212 (sml/apply-theme
'automatic
)
1213 (font-lock-add-keywords
1214 'org-mode a
/org-mode-font-lock-keywords t
))
1217 ("s-t d" . a
/lights-off
)
1218 ("s-t l" . a
/lights-on
))
1221 ;;; Emacs enhancements & auxiliary packages
1224 :config
(setq Man-width
80))
1226 (use-package which-key
1229 (which-key-add-key-based-replacements
1230 ;; prefixes for global prefixes and minor modes
1234 "C-c 8 -" "typo/dashes"
1235 "C-c 8 <" "typo/left-brackets"
1236 "C-c 8 >" "typo/right-brackets"
1238 "C-x a" "abbrev/expand"
1239 "C-x r" "rectangle/register/bookmark"
1240 "C-x v" "version control"
1241 ;; prefixes for my personal bindings
1242 "C-c a" "applications"
1246 "C-c p" "package-management"
1247 ;; "C-c p e" "package-management/epkg"
1248 "C-c p s" "straight.el"
1251 "C-c c" "compile-and-comments"
1256 "C-c m" "multiple-cursors"
1257 "C-c P" "projectile"
1258 "C-c P s" "projectile/search"
1259 "C-c P x" "projectile/execute"
1260 "C-c P 4" "projectile/other-window"
1266 ;; prefixes for major modes
1267 (which-key-add-major-mode-key-based-replacements 'message-mode
1269 (which-key-add-major-mode-key-based-replacements 'org-mode
1270 "C-c C-v" "org-babel")
1271 (which-key-add-major-mode-key-based-replacements 'web-mode
1272 "C-c C-a" "web/attributes"
1273 "C-c C-b" "web/blocks"
1275 "C-c C-e" "web/element"
1276 "C-c C-t" "web/tags")
1280 (which-key-add-column-padding 5)
1281 (which-key-max-description-length 32))
1283 (use-package crux
; results in Waiting for git... [2 times]
1285 :bind
(("C-c b k" . crux-kill-other-buffers
)
1286 ("C-c d" . crux-duplicate-current-line-or-region
)
1287 ("C-c D" . crux-duplicate-and-comment-current-line-or-region
)
1288 ("C-c f c" . crux-copy-file-preserve-attributes
)
1289 ("C-c f d" . crux-delete-file-and-buffer
)
1290 ("C-c f r" . crux-rename-file-and-buffer
)
1291 ("C-c j" . crux-top-join-line
)
1292 ("C-S-j" . crux-top-join-line
)))
1295 :bind
(("C-a" . mwim-beginning-of-code-or-line
)
1296 ("C-e" . mwim-end-of-code-or-line
)
1297 ("<home>" . mwim-beginning-of-line-or-code
)
1298 ("<end>" . mwim-end-of-line-or-code
)))
1300 (use-package projectile
1301 :bind-keymap
("C-c P" . projectile-command-map
)
1305 (defun my-projectile-invalidate-cache (&rest _args
)
1306 ;; ignore the args to `magit-checkout'
1307 (projectile-invalidate-cache nil
))
1309 (eval-after-load 'magit-branch
1311 (advice-add 'magit-checkout
1312 :after
#'my-projectile-invalidate-cache
)
1313 (advice-add 'magit-branch-and-checkout
1314 :after
#'my-projectile-invalidate-cache
)))
1315 :custom
(projectile-completion-system 'ivy
))
1317 (use-package helpful
1320 (("C-S-h c" . helpful-command
)
1321 ("C-S-h f" . helpful-callable
) ; helpful-function
1322 ("C-S-h v" . helpful-variable
)
1323 ("C-S-h k" . helpful-key
)
1324 ("C-S-h p" . helpful-at-point
)))
1326 (use-package unkillable-scratch
1329 (unkillable-scratch 1)
1331 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1334 ;; | make pretty boxed quotes like this
1336 (use-package boxquote
1339 (:prefix-map a
/boxquote-prefix-map
1341 ("b" . boxquote-buffer
)
1342 ("B" . boxquote-insert-buffer
)
1343 ("d" . boxquote-defun
)
1344 ("F" . boxquote-insert-file
)
1345 ("hf" . boxquote-describe-function
)
1346 ("hk" . boxquote-describe-key
)
1347 ("hv" . boxquote-describe-variable
)
1348 ("hw" . boxquote-where-is
)
1349 ("k" . boxquote-kill
)
1350 ("p" . boxquote-paragraph
)
1351 ("q" . boxquote-boxquote
)
1352 ("r" . boxquote-region
)
1353 ("s" . boxquote-shell-command
)
1354 ("t" . boxquote-text
)
1355 ("T" . boxquote-title
)
1356 ("u" . boxquote-unbox
)
1357 ("U" . boxquote-unbox-region
)
1358 ("y" . boxquote-yank
)
1359 ("M-q" . boxquote-fill-paragraph
)
1360 ("M-w" . boxquote-kill-ring-save
)))
1362 (use-package orgalist
1363 ;; http://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00007.html
1366 :hook
(message-mode . orgalist-mode
))
1368 ;; easily type pretty quotes & other typography, like ‘’“”-–—«»‹›
1372 (typo-global-mode 1)
1373 :hook
(text-mode . typo-mode
))
1375 ;; highlight TODOs in buffers
1376 (use-package hl-todo
1379 (global-hl-todo-mode))
1381 (use-package shrink-path
1385 (defvar user-
@-host
(concat (user-login-name) "@" (system-name) " "))
1386 (defun +eshell
/prompt
()
1387 (let ((base/dir
(shrink-path-prompt default-directory
)))
1388 (concat (propertize user-
@-host
'face
'default
)
1389 (propertize (car base
/dir
)
1390 'face
'font-lock-comment-face
)
1391 (propertize (cdr base
/dir
)
1392 'face
'font-lock-constant-face
)
1393 (propertize "> " 'face
'default
))))
1394 (setq eshell-prompt-regexp
(concat user-
@-host
".*> ")
1395 eshell-prompt-function
#'+eshell
/prompt
))
1397 (use-package eshell-up
1399 :commands eshell-up
)
1401 (use-package multi-term
1403 :bind
(("C-c a s m m" . multi-term
)
1404 ("C-c a s m d" . multi-term-dedicated-toggle
)
1405 ("C-c a s m p" . multi-term-prev
)
1406 ("C-c a s m n" . multi-term-next
)
1408 ("C-c C-j" . term-char-mode
))
1410 (setq multi-term-program
"screen"
1411 multi-term-program-switches
(concat "-c"
1412 (getenv "XDG_CONFIG_HOME")
1414 ;; TODO: add separate bindings for connecting to existing
1415 ;; session vs. always creating a new one
1416 multi-term-dedicated-select-after-open-p t
1417 multi-term-dedicated-window-height
20
1418 multi-term-dedicated-max-window-height
30
1420 '(("C-c C-c" . term-interrupt-subjob
)
1421 ("C-c C-e" . term-send-esc
)
1422 ("C-c C-j" . term-line-mode
)
1424 ;; ("C-y" . term-paste)
1425 ("C-y" . term-send-raw
)
1426 ("M-f" . term-send-forward-word
)
1427 ("M-b" . term-send-backward-word
)
1428 ("M-p" . term-send-up
)
1429 ("M-n" . term-send-down
)
1430 ("M-j" . term-send-raw-meta
)
1431 ("M-y" . term-send-raw-meta
)
1432 ("M-/" . term-send-raw-meta
)
1433 ("M-0" . term-send-raw-meta
)
1434 ("M-1" . term-send-raw-meta
)
1435 ("M-2" . term-send-raw-meta
)
1436 ("M-3" . term-send-raw-meta
)
1437 ("M-4" . term-send-raw-meta
)
1438 ("M-5" . term-send-raw-meta
)
1439 ("M-6" . term-send-raw-meta
)
1440 ("M-7" . term-send-raw-meta
)
1441 ("M-8" . term-send-raw-meta
)
1442 ("M-9" . term-send-raw-meta
)
1443 ("<C-backspace>" . term-send-backward-kill-word
)
1444 ("<M-DEL>" . term-send-backward-kill-word
)
1445 ("M-d" . term-send-delete-word
)
1446 ("M-," . term-send-raw
)
1447 ("M-." . comint-dynamic-complete
))
1448 term-unbind-key-alist
1449 '("C-z" "C-x" "C-c" "C-h"
1453 (use-package page-break-lines
1456 (global-page-break-lines-mode))
1458 (use-package expand-region
1459 :bind
("C-=" . er
/expand-region
))
1461 (use-package multiple-cursors
1463 (("C-S-<mouse-1>" . mc
/add-cursor-on-click
)
1464 (:prefix-map a
/mc-prefix-map
1466 ("c" . mc
/edit-lines
)
1467 ("n" . mc
/mark-next-like-this
)
1468 ("p" . mc
/mark-previous-like-this
)
1469 ("a" . mc
/mark-all-like-this
))))
1475 (use-package yasnippet
1478 (defconst yas-verbosity-cur yas-verbosity
)
1479 (setq yas-verbosity
2)
1480 (add-to-list 'yas-snippet-dirs
"~/src/git/guix/etc/snippets")
1482 (setq yas-verbosity yas-verbosity-cur
)
1484 (text-mode . yas-minor-mode
))
1486 (use-package debbugs
1489 :repo
"emacs-straight/debbugs"
1490 :files
(:defaults
"Debbugs.wsdl")))
1492 (use-package org-ref
1494 (a/setq-every
'("~/usr/org/references.bib")
1495 reftex-default-bibliography
1496 org-ref-default-bibliography
)
1498 org-ref-bibliography-notes
"~/usr/org/notes.org"
1499 org-ref-pdf-directory
"~/usr/org/bibtex-pdfs/"))
1503 :init
(setq alert-default-style
'notifications
))
1505 (use-package ivy-xref
1507 (setq xref-show-xrefs-function
#'ivy-xref-show-xrefs
))
1510 ;;; Email (with Gnus)
1512 (defvar a
/maildir
(expand-file-name "~/mail/"))
1513 (with-eval-after-load 'recentf
1514 (add-to-list 'recentf-exclude a
/maildir
))
1517 a
/gnus-init-file
(no-littering-expand-etc-file-name "gnus")
1518 mail-user-agent
'gnus-user-agent
1519 read-mail-command
'gnus
)
1522 :bind
(("s-m" . gnus
)
1523 ("s-M" . gnus-unplugged
))
1526 gnus-select-method
'(nnnil "")
1527 gnus-secondary-select-methods
1529 (nnimap-stream plain
)
1530 (nnimap-address "127.0.0.1")
1531 (nnimap-server-port 143)
1532 (nnimap-authenticator plain
)
1533 (nnimap-user "amin@bndl.local"))
1535 (nnimap-stream plain
)
1536 (nnimap-address "127.0.0.1")
1537 (nnimap-server-port 143)
1538 (nnimap-authenticator plain
)
1539 (nnimap-user "bandali@gnu.local")
1540 (nnimap-inbox "INBOX")
1541 (nnimap-split-methods 'nnimap-split-fancy
)
1542 (nnimap-split-fancy (|
1543 (: gnus-registry-split-fancy-with-parent
)
1544 ;; (: gnus-group-split-fancy "INBOX" t "INBOX")
1546 (list ".*emacs-devel.gnu.org" "l.gnu.emacs.devel")
1547 (list ".*help-gnu-emacs.gnu.org" "l.gnu.emacs.help")
1548 (list ".*info-gnu-emacs.gnu.org" "l.gnu.emacs.info")
1549 (list ".*emacs-orgmode.gnu.org" "l.gnu.emacs.orgmode")
1550 (list ".*emacsconf-discuss.gnu.org" "l.gnu.emacsconf.discuss")
1551 (list ".*fencepost-users.gnu.org" "l.gnu.fencepost.users")
1552 (list ".*gnunet-developers.gnu.org" "l.gnu.gnunet.developers")
1553 (list ".*help-gnunet.gnu.org" "l.gnu.gnunet.help")
1554 (list ".*bug-gnuzilla.gnu.org" "l.gnu.gnuzilla.bug")
1555 (list ".*gnuzilla-dev.gnu.org" "l.gnu.gnuzilla.dev")
1556 (list ".*guile-devel.gnu.org" "l.gnu.guile.devel")
1557 (list ".*guix-devel.gnu.org" "l.gnu.guix.devel")
1558 (list ".*info-guix.gnu.org" "l.gnu.guix.info")
1559 (list ".*www-commits.gnu.org" "l.gnu.www.commits")
1560 (list ".*www-discuss.gnu.org" "l.gnu.www.discuss")
1562 (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters")
1564 (list ".*haskell-art.we.lurk.org" "l.haskell.art")
1565 (list ".*haskell-cafe.haskell.org" "l.haskell.cafe")
1567 (list ".*deepspec.lists.cs.princeton.edu" "l.deepspec")
1568 (list ".*notmuch.notmuchmail.org" "l.notmuch")
1569 (list ".*dev.lists.parabola.nu" "l.parabola.dev")
1571 (list ".*~bandali/public-inbox@lists.sr.ht" "l.~bandali.public-inbox")
1572 (list ".*~sircmpwn/sr.ht-admins@lists.sr.ht" "l.~sircmpwn.srht.admins")
1573 (list ".*~sircmpwn/sr.ht-announce@lists.sr.ht" "l.~sircmpwn.srht.announce")
1574 (list ".*~sircmpwn/sr.ht-dev@lists.sr.ht" "l.~sircmpwn.srht.dev")
1575 (list ".*~sircmpwn/sr.ht-discuss@lists.sr.ht" "l.~sircmpwn.srht.discuss")
1578 (nnimap-stream plain
)
1579 (nnimap-address "127.0.0.1")
1580 (nnimap-server-port 143)
1581 (nnimap-authenticator plain
)
1582 (nnimap-user "abandali@uw.local"))
1584 (nnimap-stream plain
)
1585 (nnimap-address "127.0.0.1")
1586 (nnimap-server-port 143)
1587 (nnimap-authenticator plain
)
1588 (nnimap-user "abandali@csc.uw.local")))
1589 gnus-message-archive-group
"nnimap+amin:Sent"
1592 (to-address .
"deepspec@lists.cs.princeton.edu")
1593 (to-list .
"deepspec@lists.cs.princeton.edu")
1594 (list-identifier .
"\\[deepspec\\]"))
1595 ("l\\.gnu\\.emacs\\.devel"
1596 (to-address .
"emacs-devel@gnu.org")
1597 (to-list .
"emacs-devel@gnu.org"))
1598 ("l\\.gnu\\.emacs\\.help"
1599 (to-address .
"help-gnu-emacs@gnu.org")
1600 (to-list .
"help-gnu-emacs@gnu.org"))
1601 ("l\\.gnu\\.emacs\\.info"
1602 (to-address .
"info-gnu-emacs@gnu.org")
1603 (to-list .
"info-gnu-emacs@gnu.org"))
1604 ("l\\.gnu\\.emacs\\.orgmode"
1605 (to-address .
"emacs-orgmode@gnu.org")
1606 (to-list .
"emacs-orgmode@gnu.org")
1607 (list-identifier .
"\\[O\\]"))
1608 ("l\\.gnu\\.emacsconf\\.discuss"
1609 (to-address .
"emacsconf-discuss@gnu.org")
1610 (to-list .
"emacsconf-discuss@gnu.org"))
1611 ("l\\.gnu\\.fencepost\\.users"
1612 (to-address .
"fencepost-users@gnu.org")
1613 (to-list .
"fencepost-users@gnu.org")
1614 (list-identifier .
"\\[Fencepost-users\\]"))
1615 ("l\\.gnu\\.gnunet\\.developers"
1616 (to-address .
"gnunet-developers@gnu.org")
1617 (to-list .
"gnunet-developers@gnu.org")
1618 (list-identifier .
"\\[GNUnet-developers\\]"))
1619 ("l\\.gnu\\.gnunet\\.help"
1620 (to-address .
"help-gnunet@gnu.org")
1621 (to-list .
"help-gnunet@gnu.org")
1622 (list-identifier .
"\\[Help-gnunet\\]"))
1623 ("l\\.gnu\\.gnuzilla\\.bug"
1624 (to-address .
"bug-gnuzilla@gnu.org")
1625 (to-list .
"bug-gnuzilla@gnu.org")
1626 (list-identifier .
"\\[Bug-gnuzilla\\]"))
1627 ("l\\.gnu\\.gnuzilla\\.dev"
1628 (to-address .
"gnuzilla-dev@gnu.org")
1629 (to-list .
"gnuzilla-dev@gnu.org")
1630 (list-identifier .
"\\[Gnuzilla-dev\\]"))
1631 ("l\\.gnu\\.guile\\.devel"
1632 (to-address .
"guile-devel@gnu.org")
1633 (to-list .
"guile-devel@gnu.org"))
1634 ("l\\.gnu\\.guix\\.devel"
1635 (to-address .
"guix-devel@gnu.org")
1636 (to-list .
"guix-devel@gnu.org"))
1637 ("l\\.gnu\\.guix\\.info"
1638 (to-address .
"info-guix@gnu.org")
1639 (to-list .
"info-guix@gnu.org"))
1640 ("l\\.gnu\\.www\\.commits"
1641 (to-address .
"www-commits@gnu.org")
1642 (to-list .
"www-commits@gnu.org"))
1643 ("l\\.gnu\\.www\\.discuss"
1644 (to-address .
"www-discuss@gnu.org")
1645 (to-list .
"www-discuss@gnu.org"))
1646 ("l\\.haskell\\.art"
1647 (to-address .
"haskell-art@we.lurk.org")
1648 (to-list .
"haskell-art@we.lurk.org")
1649 (list-identifier .
"\\[haskell-art\\]"))
1650 ("l\\.haskell\\.cafe"
1651 (to-address .
"haskell-cafe@haskell.org")
1652 (to-list .
"haskell-cafe@haskell.org")
1653 (list-identifier .
"\\[Haskell-cafe\\]"))
1655 (to-address .
"notmuch@notmuchmail.org")
1656 (to-list .
"notmuch@notmuchmail.org"))
1657 ("l\\.parabola\\.dev"
1658 (to-address .
"dev@lists.parabola.nu")
1659 (to-list .
"dev@lists.parabola.nu")
1660 (list-identifier .
"\\[Dev\\]"))
1661 ("l\\.~bandali\\.public-inbox"
1662 (to-address .
"~bandali/public-inbox@lists.sr.ht")
1663 (to-list .
"~bandali/public-inbox@lists.sr.ht"))
1664 ("l\\.~sircmpwn\\.srht\\.admins"
1665 (to-address .
"~sircmpwn/sr.ht-admins@lists.sr.ht")
1666 (to-list .
"~sircmpwn/sr.ht-admins@lists.sr.ht"))
1667 ("l\\.~sircmpwn\\.srht\\.announce"
1668 (to-address .
"~sircmpwn/sr.ht-announce@lists.sr.ht")
1669 (to-list .
"~sircmpwn/sr.ht-announce@lists.sr.ht"))
1670 ("l\\.~sircmpwn\\.srht\\.dev"
1671 (to-address .
"~sircmpwn/sr.ht-dev@lists.sr.ht")
1672 (to-list .
"~sircmpwn/sr.ht-dev@lists.sr.ht"))
1673 ("l\\.~sircmpwn\\.srht\\.discuss"
1674 (to-address .
"~sircmpwn/sr.ht-discuss@lists.sr.ht")
1675 (to-list .
"~sircmpwn/sr.ht-discuss@lists.sr.ht"))
1677 (to-address .
"webmasters@gnu.org")
1678 (to-list .
"webmasters@gnu.org"))
1685 gnus-large-newsgroup
50
1686 gnus-home-directory
(no-littering-expand-var-file-name "gnus/")
1687 gnus-directory
(concat gnus-home-directory
"news/")
1688 message-directory
(concat gnus-home-directory
"mail/")
1689 nndraft-directory
(concat gnus-home-directory
"drafts/")
1690 gnus-save-newsrc-file nil
1691 gnus-read-newsrc-file nil
1692 gnus-interactive-exit nil
1693 gnus-gcc-mark-as-read t
)
1697 (require 'ebdb-gnus
)
1699 (gnus-registry-initialize)
1701 (with-eval-after-load 'recentf
1702 (add-to-list 'recentf-exclude gnus-home-directory
)))
1704 (use-feature gnus-art
1707 gnus-visible-headers
1708 (concat gnus-visible-headers
"\\|^List-Id:\\|^X-RT-Originator:\\|^User-Agent:")
1709 gnus-sorted-header-list
1710 '("^From:" "^Subject:" "^Summary:" "^Keywords:"
1711 "^Followup-To:" "^To:" "^Cc:" "X-RT-Originator"
1712 "^Newsgroups:" "List-Id:" "^Organization:"
1713 "^User-Agent:" "^Date:")
1714 ;; local-lapsed article dates
1715 ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11
1716 gnus-article-date-headers
'(user-defined)
1717 gnus-article-time-format
1719 (let* ((date (format-time-string "%a, %d %b %Y %T %z" time
))
1720 (local (article-make-date-line date
'local
))
1721 (combined-lapsed (article-make-date-line date
1724 (string-match " (.+" combined-lapsed
)
1725 (match-string 0 combined-lapsed
))))
1726 (concat local lapsed
))))
1728 :map gnus-article-mode-map
1729 ("M-L" . org-store-link
)))
1731 (use-feature gnus-sum
1732 :bind
(:map gnus-summary-mode-map
1733 :prefix-map a
/gnus-summary-prefix-map
1735 ("r" . gnus-summary-reply
)
1736 ("w" . gnus-summary-wide-reply
)
1737 ("v" . gnus-summary-show-raw-article
))
1740 :map gnus-summary-mode-map
1741 ("M-L" . org-store-link
))
1742 :hook
(gnus-summary-mode . a
/no-mouse-autoselect-window
))
1744 (use-feature gnus-msg
1746 (defvar a
/gnu-signature
"Amin Bandali | GNU Webmaster
1747 https://bandali.eu.org | https://gnu.org
1748 GPG Key: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103")
1749 (defvar a
/uw-signature
"Amin Bandali, MMath Student
1750 Cheriton School of Computer Science
1751 University of Waterloo
1752 https://bandali.eu.org")
1753 (defvar a
/csc-signature
"Amin Bandali | Termcom, CSC
1754 https://csclub.uwaterloo.ca/~abandali/")
1755 (setq gnus-posting-styles
1757 (address "amin@bndl.org")
1759 (eval (setq a
/message-cite-say-hi t
)))
1761 (address "bandali@gnu.org")
1762 (signature a
/gnu-signature
)
1763 (eval (set (make-local-variable 'message-user-fqdn
) "fencepost.gnu.org")))
1764 ((header "subject" "ThankCRM")
1765 (to "webmasters-comment@gnu.org")
1766 (body "Added to 2019supporters.html.\n\nMoving to campaigns.\n")
1767 (eval (setq a
/message-cite-say-hi nil
)))
1769 (address "abandali@uwaterloo.ca")
1770 (signature a
/uw-signature
))
1771 ("nnimap\\+uw:INBOX"
1772 (gcc "\"nnimap+uw:Sent Items\""))
1774 (address "abandali@csclub.uwaterloo.ca")
1775 (signature a
/csc-signature
)
1776 (gcc "nnimap+csc:Sent")))))
1778 (use-feature gnus-topic
1779 :hook
(gnus-group-mode . gnus-topic-mode
)
1780 :config
(setq gnus-topic-line-format
"%i[ %A: %(%{%n%}%) ]%v\n"))
1782 (use-feature gnus-agent
1784 (setq gnus-agent-synchronize-flags
'ask
)
1785 :hook
(gnus-group-mode . gnus-agent-mode
))
1787 (use-feature gnus-group
1789 (setq gnus-permanently-visible-groups
"\\(:INBOX$\\|:gnu$\\)"))
1792 ;; problematic with ebdb's popup, *EBDB-Gnus*
1793 (use-feature gnus-win
1795 (setq gnus-use-full-window nil
)))
1797 (use-feature gnus-dired
1798 :commands gnus-dired-mode
1800 (add-hook 'dired-mode-hook
'gnus-dired-mode
))
1802 (use-feature mm-decode
1804 (setq mm-discouraged-alternatives
'("text/html" "text/richtext")))
1806 (use-feature sendmail
1808 (setq sendmail-program
"/usr/bin/msmtp"
1809 ;; message-sendmail-extra-arguments '("-v" "-d")
1810 mail-specify-envelope-from t
1811 mail-envelope-from
'header
))
1813 (use-feature message
1815 ;; redefine for a simplified In-Reply-To header
1816 ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67)
1817 (defun message-make-in-reply-to ()
1818 "Return the In-Reply-To header for this message."
1819 (when message-reply-headers
1820 (let ((from (mail-header-from message-reply-headers
))
1821 (msg-id (mail-header-id message-reply-headers
)))
1825 (defconst a
/message-cite-style-format
"On %Y-%m-%d %l:%M %p, %N wrote:")
1826 (defconst message-cite-style-bandali
1827 '((message-cite-function 'message-cite-original
)
1828 (message-citation-line-function 'message-insert-formatted-citation-line
)
1829 (message-cite-reply-position 'traditional
)
1830 (message-yank-prefix "> ")
1831 (message-yank-cited-prefix ">")
1832 (message-yank-empty-prefix ">")
1833 (message-citation-line-format
1834 (if a
/message-cite-say-hi
1835 (concat "Hi %F,\n\n" a
/message-cite-style-format
)
1836 a
/message-cite-style-format
)))
1837 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
1838 (setq ;; message-cite-style 'message-cite-style-bandali
1839 message-kill-buffer-on-exit t
1840 message-send-mail-function
'message-send-mail-with-sendmail
1841 message-sendmail-envelope-from
'header
1842 message-subscribed-address-functions
1843 '(gnus-find-subscribed-addresses)
1844 message-dont-reply-to-names
1845 "\\(\\(amin@bndl\\.org\\)\\|\\(.*@\\(aminb\\|amin\\.bndl\\)\\.org\\)\\|\\(\\(bandali\\|aminb?\\|mab\\)@gnu\\.org\\)\\|\\(a\\(min\\.\\)?bandali@uwaterloo\\.ca\\)\\|\\(abandali@csclub\\.uwaterloo\\.ca\\)\\)")
1846 (require 'company-ebdb
)
1847 :hook
(;; (message-setup . mml-secure-message-sign-pgpmime)
1848 (message-mode . flyspell-mode
)
1849 (message-mode .
(lambda ()
1850 ;; (setq fill-column 65
1851 ;; message-fill-column 65)
1852 (make-local-variable 'company-idle-delay
)
1853 (setq company-idle-delay
0.2))))
1855 ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
1856 ;; (message-header-to ((t (:foreground "#111" :weight normal))))
1857 ;; (message-header-cc ((t (:foreground "#333" :weight normal))))
1860 (with-eval-after-load 'mml-sec
1861 (setq mml-secure-openpgp-encrypt-to-self t
1862 mml-secure-openpgp-sign-with-sender t
))
1864 (use-feature footnote
1867 ;; (setq footnote-start-tag ""
1868 ;; footnote-end-tag ""
1869 ;; footnote-style 'unicode)
1871 (:map message-mode-map
1872 :prefix-map a
/footnote-prefix-map
1874 ("a" . footnote-add-footnote
)
1875 ("b" . footnote-back-to-message
)
1876 ("c" . footnote-cycle-style
)
1877 ("d" . footnote-delete-footnote
)
1878 ("g" . footnote-goto-footnote
)
1879 ("r" . footnote-renumber-footnotes
)
1880 ("s" . footnote-set-style
)))
1883 :straight
(:host github
:repo
"girzel/ebdb")
1885 :bind
(:map gnus-group-mode-map
("e" . ebdb
))
1887 (setq ebdb-sources
(no-littering-expand-var-file-name "ebdb"))
1888 (with-eval-after-load 'swiper
1889 (add-to-list 'swiper-font-lock-exclude
'ebdb-mode t
)))
1891 (use-feature ebdb-com
1894 ;; (use-package ebdb-complete
1897 ;; (ebdb-complete-enable))
1899 (use-package company-ebdb
1901 (defun company-ebdb--post-complete (_) nil
))
1903 (use-feature ebdb-gnus
1906 (ebdb-gnus-window-configuration
1909 (summary 0.25 point
)
1912 (ebdb-gnus 0.3))))))
1914 (use-feature ebdb-mua
1916 ;; :custom (ebdb-mua-pop-up nil)
1919 ;; (use-package ebdb-message
1923 ;; (use-package ebdb-vcard
1926 (use-package message-x
)
1929 (use-package message-x
1931 (message-x-completion-alist
1933 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address
)
1936 (quote message-newgroups-header-regexp
))
1937 message-newgroups-header-regexp message-newsgroups-header-regexp
)
1938 . message-expand-group
))))))
1941 (use-package gnus-harvest
1942 :commands gnus-harvest-install
1945 (if (featurep 'message-x
)
1946 (gnus-harvest-install 'message-x
)
1947 (gnus-harvest-install))))
1953 :straight
(:host nil
:repo
"https://git.bndl.org/amin/znc.el")
1954 :bind
(("C-c a e e" . znc-erc
)
1955 ("C-c a e a" . znc-all
))
1957 (let ((pwd (let ((auth (auth-source-search :host
"znca")))
1959 ((null auth
) (error "Couldn't find znca's authinfo"))
1960 (t (funcall (plist-get (car auth
) :secret
)))))))
1962 `(("znc.bndl.org" 1337 t
1963 ((freenode "amin/freenode" ,pwd
)))
1964 ("znc.bndl.org" 1337 t
1965 ((moznet "amin/moznet" ,pwd
)))))))
1968 ;;; Post initialization
1970 (message "Loading %s...done (%.3fs)" user-init-file
1971 (float-time (time-subtract (current-time)
1972 a
/before-user-init-time
)))
1974 ;;; init.el ends here