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 (message "Loading Emacs...done (%.3fs)"
43 (float-time (time-subtract b
/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 b
/gc-cons-threshold gc-cons-threshold
)
50 (defvar b
/gc-cons-percentage gc-cons-percentage
)
51 (defvar b
/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 b
/gc-cons-threshold
61 gc-cons-percentage b
/gc-cons-percentage
62 file-name-handler-alist b
/file-name-handler-alist
))
63 (add-hook 'after-init-hook
#'b
/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
"bandali@gnu.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 b/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 (b/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."
141 (with-eval-after-load 'use-package-core
142 (let ((upflk (car use-package-font-lock-keywords
)))
143 (font-lock-add-keywords
145 `((,(replace-regexp-in-string
146 "use-package" "use-feature"
150 (with-eval-after-load 'recentf
151 (add-to-list 'recentf-exclude
152 (expand-file-name "~/.emacs.d/straight/build/")))
154 (defun b/reload-init
()
157 (setq b
/file-name-handler-alist file-name-handler-alist
)
158 (load user-init-file nil
'nomessage
)
162 (straight-use-package 'use-package
)
164 (if nil
; set to t when need to debug init
166 (setq use-package-verbose t
167 use-package-expand-minimally nil
168 use-package-compute-statistics t
170 (require 'use-package
))
171 (setq use-package-verbose nil
172 use-package-expand-minimally t
))
174 (setq use-package-always-defer t
)
177 (use-package delight
)
182 ;; keep ~/.emacs.d clean
183 (use-package no-littering
186 (defalias 'b
/etc
'no-littering-expand-etc-file-name
)
187 (defalias 'b
/var
'no-littering-expand-var-file-name
))
189 ;; separate custom file (don't want it mixing with init.el)
193 (setq custom-file
(b/etc
"custom.el"))
194 (when (file-exists-p custom-file
)
196 ;; while at it, treat themes as safe
197 (setf custom-safe-themes t
)
198 ;; only one custom theme at a time
200 (defadvice load-theme
(before clear-previous-themes activate
)
201 "Clear existing theme settings instead of layering them"
202 (mapc #'disable-theme custom-enabled-themes
))))
204 ;; load the secrets file if it exists, otherwise show a warning
207 (load (b/etc
"secrets"))))
209 ;; better $PATH (and other environment variable) handling
210 (use-package exec-path-from-shell
213 (setq exec-path-from-shell-arguments nil
214 exec-path-from-shell-check-startup-files nil
)
216 (exec-path-from-shell-initialize)
217 ;; while we're at it, let's fix access to our running ssh-agent
218 (exec-path-from-shell-copy-env "SSH_AGENT_PID")
219 (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
221 ;; start up emacs server. see
222 ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server
225 :config
(or (server-running-p) (server-mode)))
234 (defmacro b
/setq-every
(value &rest vars
)
235 "Set all the variables from VARS to value VALUE."
236 (declare (indent defun
) (debug t
))
237 `(progn ,@(mapcar (lambda (x) (list 'setq x value
)) vars
)))
239 (defun b/start-process
(program &rest args
)
240 "Same as `start-process', but doesn't bother about name and buffer."
241 (let ((process-name (concat program
"_process"))
242 (buffer-name (generate-new-buffer-name
243 (concat program
"_output"))))
244 (apply #'start-process
245 process-name buffer-name program args
)))
247 (defun b/dired-start-process
(program &optional args
)
248 "Open current file with a PROGRAM."
249 ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can
250 ;; be nil, so remove it).
251 (apply #'b
/start-process
253 (remove nil
(list args
(dired-get-file-for-visit)))))
255 (defun b/add-elisp-section
()
259 (insert "\n\f\n;;; "))
261 (defun b/no-mouse-autoselect-window
()
262 "Conveniently disable `focus-follows-mouse'.
263 For disabling the behaviour for certain buffers and/or modes."
264 (make-local-variable 'mouse-autoselect-window
)
265 (setq mouse-autoselect-window nil
))
270 ;;;; C-level customizations
274 enable-recursive-minibuffers t
275 resize-mini-windows t
276 ;; more useful frame titles
277 frame-title-format
'("" invocation-name
" - "
279 (if (buffer-file-name)
280 (abbreviate-file-name (buffer-file-name))
282 ;; i don't feel like jumping out of my chair every now and again; so
283 ;; don't BEEP! at me, emacs
284 ring-bell-function
'ignore
287 ;; scroll-conservatively 10000
289 scroll-conservatively
10
290 scroll-preserve-screen-position
1
291 ;; focus follows mouse
292 mouse-autoselect-window t
)
295 ;; always use space for indentation
303 (dolist (ft (fontset-list))
307 (font-spec :name
"Source Code Pro" :size
14))
311 (font-spec :name
"DejaVu Sans Mono")
318 ;; :name "Symbola monospacified for DejaVu Sans Mono")
324 ;; (font-spec :name "DejaVu Sans Mono")
330 (font-spec :name
"DejaVu Sans Mono" :size
14)
334 ;;;; Elisp-level customizations
340 ;; don't need to see the startup echo area message
341 (advice-add #'display-startup-echo-area-message
:override
#'ignore
)
343 ;; i want *scratch* as my startup buffer
344 (initial-buffer-choice t
)
345 ;; i don't need the default hint
346 (initial-scratch-message nil
)
347 ;; use customizable text-mode as major mode for *scratch*
348 ;; (initial-major-mode 'text-mode)
349 ;; inhibit buffer list when more than 2 files are loaded
350 (inhibit-startup-buffer-menu t
)
351 ;; don't need to see the startup screen or echo area message
352 (inhibit-startup-screen t
)
353 (inhibit-startup-echo-area-message user-login-name
))
359 ;; backups (C-h v make-backup-files RET)
360 (backup-by-copying t
)
362 (delete-old-versions t
)
365 (auto-save-file-name-transforms
366 `((".*" ,(b/var
"auto-save/") t
)))
368 ;; insert newline at the end of files
369 (require-final-newline t
)
371 ;; open read-only file buffers in view-mode
372 ;; (enables niceties like `q' for quit)
375 ;; disable disabled commands
376 (setq disabled-command-function nil
)
378 ;; lazy-person-friendly yes/no prompts
379 (defalias 'yes-or-no-p
#'y-or-n-p
)
381 ;; enable automatic reloading of changed buffers and files
382 (use-feature autorevert
385 (global-auto-revert-mode 1)
387 (auto-revert-verbose nil
)
388 (global-auto-revert-non-file-buffers nil
))
390 ;; time and battery in mode-line
394 (setq display-time-default-load-average nil
)
400 (display-battery-mode)))
406 ;; (fringe-mode '(3 . 1))
412 ;; enable winner-mode (C-h f winner-mode RET)
417 ;; don't display *compilation* buffer on success. based on
418 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
419 ;; instead of the now obsolete `flet'.
420 (defun b/compilation-finish-function
(buffer outstr
)
421 (unless (string-match "finished" outstr
)
422 (switch-to-buffer-other-window buffer
))
425 (setq compilation-finish-functions
#'b
/compilation-finish-function
)
429 (defadvice compilation-start
430 (around inhibit-display
431 (command &optional mode name-function highlight-regexp
))
432 (if (not (string-match "^\\(find\\|grep\\)" command
))
433 (cl-letf (((symbol-function 'display-buffer
) #'ignore
))
434 (save-window-excursion ad-do-it
))
436 (ad-activate 'compilation-start
))
440 ;; allow scrolling in Isearch
441 (isearch-allow-scroll t
)
442 ;; search for non-ASCII characters: i’d like non-ASCII characters such
443 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
444 ;; counterpart. shoutout to
445 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
446 (search-default-mode #'char-fold-to-regexp
))
448 ;; uncomment to extend the above behaviour to query-replace
452 (replace-char-fold t
)))
455 :bind
("C-x v C-=" . vc-ediff
))
458 :config
(add-hook 'ediff-after-quit-hook-internal
'winner-undo
)
459 :custom
((ediff-window-setup-function 'ediff-setup-windows-plain
)
460 (ediff-split-window-function 'split-window-horizontally
)))
462 (use-feature face-remap
464 ;; gentler font resizing
465 (text-scale-mode-step 1.05))
470 (setq mouse-wheel-scroll-amount
'(1 ((shift) .
1)) ; one line at a time
471 mouse-wheel-progressive-speed nil
; don't accelerate scrolling
472 mouse-wheel-follow-mouse t
)) ; scroll window under mouse
474 (use-feature pixel-scroll
476 :config
(pixel-scroll-mode 1))
478 (use-feature epg-config
480 ((epg-gpg-program (executable-find "gpg"))))
488 ("C-c e b" . eval-buffer
)
489 ("C-c e e" . eval-last-sexp
)
490 ("C-c e r" . eval-region
)
492 ("C-c e i" . emacs-init-time
)
493 ("C-c e u" . emacs-uptime
)
494 ("C-c e v" . emacs-version
)
496 ("C-c F m" . make-frame-command
)
497 ("C-c F d" . delete-frame
)
498 ("C-c F D" . server-edit
)
500 ("C-S-h C" . describe-char
)
501 ("C-S-h F" . describe-face
)
503 ("C-x k" . kill-this-buffer
)
504 ("C-x K" . kill-buffer
)
505 ("C-x s" . save-buffer
)
506 ("C-x S" . save-some-buffers
)
508 :map emacs-lisp-mode-map
509 ("<C-return>" . b
/add-elisp-section
))
511 (when (display-graphic-p)
512 (unbind-key "C-z" global-map
))
515 ;; for back and forward mouse keys
516 ("<XF86Back>" . previous-buffer
)
517 ("<mouse-8>" . previous-buffer
)
518 ("<drag-mouse-8>" . previous-buffer
)
519 ("<XF86Forward>" . next-buffer
)
520 ("<mouse-9>" . next-buffer
)
521 ("<drag-mouse-9>" . next-buffer
)
522 ("<drag-mouse-2>" . kill-this-buffer
)
523 ("<drag-mouse-3>" . ivy-switch-buffer
))
526 :prefix-map b
/straight-prefix-map
528 ("u" . straight-use-package
)
529 ("f" . straight-freeze-versions
)
530 ("t" . straight-thaw-versions
)
531 ("P" . straight-prune-build
)
532 ("g" . straight-get-recipe
)
533 ("r" . b
/reload-init
)
534 ;; M-x ^straight-.*-all$
535 ("a c" . straight-check-all
)
536 ("a f" . straight-fetch-all
)
537 ("a m" . straight-merge-all
)
538 ("a n" . straight-normalize-all
)
539 ("a F" . straight-pull-all
)
540 ("a P" . straight-push-all
)
541 ("a r" . straight-rebuild-all
)
542 ;; M-x ^straight-.*-package$
543 ("p c" . straight-check-package
)
544 ("p f" . straight-fetch-package
)
545 ("p m" . straight-merge-package
)
546 ("p n" . straight-normalize-package
)
547 ("p F" . straight-pull-package
)
548 ("p P" . straight-push-package
)
549 ("p r" . straight-rebuild-package
))
552 ;;; Essential packages
554 ;; use the org-plus-contrib package to get the whole deal
555 (use-package org-plus-contrib
)
560 (setq org-src-tab-acts-natively t
561 org-src-preserve-indentation nil
562 org-edit-src-content-indentation
0
563 org-link-email-description-format
"Email %c: %s" ; %.30s
564 org-highlight-latex-and-related
'(entities)
565 org-use-speed-commands t
566 org-startup-folded
'content
567 org-catch-invisible-edits
'show-and-error
569 (when (version< org-version
"9.3")
570 (setq org-email-link-description-format
571 org-link-email-description-format
))
572 (add-to-list 'org-structure-template-alist
'("L" .
"src emacs-lisp") t
)
573 (add-to-list 'org-modules
'org-habit
)
575 (("C-c a o a" . org-agenda
)
577 ("M-L" . org-insert-last-stored-link
)
578 ("M-O" . org-toggle-link-display
))
579 :hook
((org-mode . org-indent-mode
)
580 (org-mode . auto-fill-mode
)
581 (org-mode . flyspell-mode
))
583 (org-pretty-entities t
)
584 (org-agenda-files '("~/usr/org/todos/personal.org"
585 "~/usr/org/todos/habits.org"
586 "~/src/git/masters-thesis/todo.org"))
587 (org-agenda-start-on-weekday 0)
588 (org-agenda-time-leading-zero t
)
589 (org-habit-graph-column 44)
590 (org-latex-packages-alist '(("" "listings") ("" "color")))
592 '(org-block-begin-line ((t (:foreground
"#5a5b5a" :background
"#1d1f21"))))
593 '(org-block ((t (:background
"#1d1f21"))))
594 '(org-latex-and-related ((t (:foreground
"#b294bb")))))
596 (use-feature ox-latex
599 (setq org-latex-listings
'listings
600 ;; org-latex-prefer-user-labels t
602 (add-to-list 'org-latex-classes
603 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
604 ("\\section{%s}" .
"\\section*{%s}")
605 ("\\subsection{%s}" .
"\\subsection*{%s}")
606 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}")
607 ("\\paragraph{%s}" .
"\\paragraph*{%s}")
608 ("\\subparagraph{%s}" .
"\\subparagraph*{%s}"))
610 (require 'ox-beamer
))
612 (use-feature ox-extra
614 (ox-extras-activate '(latex-header-blocks ignore-headlines
)))
616 ;; asynchronous tangle, using emacs-async to asynchronously tangle an
617 ;; org file. closely inspired by
618 ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
619 (with-eval-after-load 'org
620 (defvar b
/show-async-tangle-results nil
621 "Keep *emacs* async buffers around for later inspection.")
623 (defvar b
/show-async-tangle-time nil
624 "Show the time spent tangling the file.")
626 (defun b/async-babel-tangle
()
627 "Tangle org file asynchronously."
629 (let* ((file-tangle-start-time (current-time))
630 (file (buffer-file-name))
631 (file-nodir (file-name-nondirectory file
))
632 ;; (async-quiet-switch "-q")
633 (file-noext (file-name-sans-extension file
)))
637 (org-babel-tangle-file ,file
))
638 (unless b
/show-async-tangle-results
641 (message "Tangled %s%s"
643 (if b
/show-async-tangle-time
645 (float-time (time-subtract (current-time)
646 ',file-tangle-start-time
)))
648 (message "Tangling %s failed" ,file-nodir
))))))))
651 'safe-local-variable-values
652 '(eval add-hook
'after-save-hook
#'b
/async-babel-tangle
'append
'local
))
654 ;; *the* right way to do git
657 :bind
(("C-x g" . magit-status
)
658 ("C-c g g" . magit-status
)
659 ("C-c g b" . magit-blame-addition
)
660 ("C-c g l" . magit-log-buffer-file
))
662 (magit-add-section-hook 'magit-status-sections-hook
663 'magit-insert-modules
664 'magit-insert-stashes
666 ;; (magit-add-section-hook 'magit-status-sections-hook
667 ;; 'magit-insert-ignored-files
668 ;; 'magit-insert-untracked-files
670 (setq magit-repository-directories
'(("~/" .
0)
672 (nconc magit-section-initial-visibility-alist
673 '(([unpulled status
] . show
)
674 ([unpushed status
] . show
)))
675 :custom
(magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1
)
676 :custom-face
(magit-diff-file-heading ((t (:weight normal
)))))
678 ;; recently opened files
682 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
684 (recentf-max-saved-items 2000))
686 ;; smart M-x enhancement (needed by counsel for history)
693 (:map ivy-minibuffer-map
694 ([escape] . keyboard-escape-quit)
695 ([S-up] . ivy-previous-history-element)
696 ([S-down] . ivy-next-history-element)
697 ("DEL" . ivy-backward-delete-char))
701 ivy-use-virtual-buffers t
702 ivy-virtual-abbreviate 'abbreviate
703 ivy-count-format "%d/%d ")
705 (defvar b/ivy-ignore-buffer-modes '(magit-mode erc-mode dired-mode))
706 (defun b/ivy-ignore-buffer-p (str)
707 "Return non-nil if str names a buffer with a major mode
708 derived from one of `b/ivy-ignore-buffer-modes'.
710 This function is intended for use with `ivy-ignore-buffers'."
711 (let* ((buf (get-buffer str))
712 (mode (and buf (buffer-local-value 'major-mode buf))))
714 (apply #'provided-mode-derived-p mode b/ivy-ignore-buffer-modes))))
715 (add-to-list 'ivy-ignore-buffers 'b/ivy-ignore-buffer-p)
719 ;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold))))
720 ;; (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold))))
721 ;; (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold))))
726 :bind (("C-s" . swiper-isearch)
728 ("C-S-s" . isearch-forward)))
733 :bind (([remap execute-extended-command] . counsel-M-x)
734 ([remap find-file] . counsel-find-file)
735 ("C-c b b" . ivy-switch-buffer)
736 ("C-c f ." . counsel-find-file)
737 ("C-c f l" . counsel-find-library)
738 ("C-c f r" . counsel-recentf)
739 ("C-c x" . counsel-M-x)
740 :map minibuffer-local-map
741 ("C-r" . counsel-minibuffer-history))
744 (defalias 'locate #'counsel-locate))
748 :commands (helm-M-x helm-mini helm-resume)
749 :bind (("M-x" . helm-M-x)
750 ("M-y" . helm-show-kill-ring)
751 ("C-x b" . helm-mini)
752 ("C-x C-b" . helm-buffers-list)
753 ("C-x C-f" . helm-find-files)
754 ("C-h r" . helm-info-emacs)
755 ("C-s-r" . helm-resume)
757 ("<tab>" . helm-execute-persistent-action)
758 ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals
759 ("C-z" . helm-select-action)) ; List actions
760 :config (helm-mode 1)))
765 :bind ("C-c a s e" . eshell)
767 (eval-when-compile (defvar eshell-prompt-regexp))
768 (defun b/eshell-quit-or-delete-char (arg)
770 (if (and (eolp) (looking-back eshell-prompt-regexp nil))
771 (eshell-life-is-too-much)
774 (defun b/eshell-clear ()
776 (let ((inhibit-read-only t))
780 (defun b/eshell-setup ()
781 (make-local-variable 'company-idle-delay)
782 (defvar company-idle-delay)
783 (setq company-idle-delay nil)
784 (bind-keys :map eshell-mode-map
785 ("C-d" . b/eshell-quit-or-delete-char)
786 ("C-S-l" . b/eshell-clear)
787 ("M-r" . counsel-esh-history)
788 ([tab] . company-complete)))
790 :hook (eshell-mode . b/eshell-setup)
792 (eshell-hist-ignoredups t)
793 (eshell-input-filter 'eshell-input-filter-initial-space))
797 (("C-x C-b" . ibuffer)
798 :map ibuffer-mode-map
799 ("P" . ibuffer-backward-filter-group)
800 ("N" . ibuffer-forward-filter-group)
801 ("M-p" . ibuffer-do-print)
802 ("M-n" . ibuffer-do-shell-command-pipe-replace))
804 ;; Use human readable Size column instead of original one
805 (define-ibuffer-column size-h
806 (:name "Size" :inline t)
808 ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0)))
809 ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0)))
810 ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0)))
811 (t (format "%8d" (buffer-size)))))
813 (ibuffer-saved-filter-groups
815 ("dired" (mode . dired-mode))
816 ("org" (mode . org-mode))
819 (mode . gnus-group-mode)
820 (mode . gnus-summary-mode)
821 (mode . gnus-article-mode)
822 ;; not really, but...
823 (mode . message-mode)))
841 (mode . emacs-lisp-mode)
843 (mode . haskell-mode)
846 (mode . alloy-mode)))
850 (mode . latex-mode)))
853 (name . "^\\*scratch\\*$")
854 (name . "^\\*Messages\\*$")))
855 ("erc" (mode . erc-mode)))))
857 '((mark modified read-only locked " "
858 (name 18 18 :left :elide)
862 (mode 16 16 :left :elide)
863 " " filename-and-process)
867 :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
871 :hook (prog-mode . outline-minor-mode)
872 :delight (outline-minor-mode " outl")
875 outline-minor-mode-map
876 ("<s-tab>" . outline-toggle-children)
877 ("M-p" . outline-previous-visible-heading)
878 ("M-n" . outline-next-visible-heading)
879 :prefix-map b/outline-prefix-map
881 ("TAB" . outline-toggle-children)
882 ("a" . outline-hide-body)
883 ("H" . outline-hide-body)
884 ("S" . outline-show-all)
885 ("h" . outline-hide-subtree)
886 ("s" . outline-show-subtree)))
889 :custom (ls-lisp-dirs-first t))
893 (setq dired-listing-switches "-alh"
894 ls-lisp-use-insert-directory-program nil)
896 ;; easily diff 2 marked files
897 ;; https://oremacs.com/2017/03/18/dired-ediff/
898 (defun dired-ediff-files ()
901 (defvar ediff-after-quit-hook-internal)
902 (let ((files (dired-get-marked-files))
903 (wnd (current-window-configuration)))
904 (if (<= (length files) 2)
905 (let ((file1 (car files))
906 (file2 (if (cdr files)
910 (dired-dwim-target-directory)))))
911 (if (file-newer-than-file-p file1 file2)
912 (ediff-files file2 file1)
913 (ediff-files file1 file2))
914 (add-hook 'ediff-after-quit-hook-internal
916 (setq ediff-after-quit-hook-internal nil)
917 (set-window-configuration wnd))))
918 (error "no more than 2 files should be marked"))))
921 (setq dired-guess-shell-alist-user
922 '(("\\.pdf\\'" "evince" "zathura" "okular")
923 ("\\.doc\\'" "libreoffice")
924 ("\\.docx\\'" "libreoffice")
925 ("\\.ppt\\'" "libreoffice")
926 ("\\.pptx\\'" "libreoffice")
927 ("\\.xls\\'" "libreoffice")
928 ("\\.xlsx\\'" "libreoffice")
929 ("\\.flac\\'" "mpv")))
930 :bind (:map dired-mode-map
931 ("b" . dired-up-directory)
932 ("e" . dired-ediff-files)
933 ("E" . dired-toggle-read-only)
934 ("\\" . dired-hide-details-mode)
937 (b/dired-start-process "zathura"))))
938 :hook (dired-mode . dired-hide-details-mode))
942 (temp-buffer-resize-mode)
943 (setq help-window-select t))
947 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
948 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
949 (add-to-list 'tramp-default-proxies-alist
950 (list (regexp-quote (system-name)) nil nil)))
953 :config (dash-enable-font-lock))
955 (use-feature doc-view
956 :bind (:map doc-view-mode-map
957 ("M-RET" . image-previous-line)))
962 ;; highlight uncommitted changes in the left fringe
966 (setq diff-hl-draw-borders nil)
967 (global-diff-hl-mode)
968 :hook (magit-post-refresh . diff-hl-magit-post-refresh))
970 ;; display Lisp objects at point in the echo area
972 :when (version< "25" emacs-version)
974 :config (global-eldoc-mode))
976 ;; highlight matching parens
979 :config (show-paren-mode))
981 (use-feature elec-pair
983 :config (electric-pair-mode))
986 :delight (auto-fill-function " fill")
987 :config (column-number-mode)
989 ;; Save what I copy into clipboard from other applications into Emacs'
990 ;; kill-ring, which would allow me to still be able to easily access
991 ;; it in case I kill (cut or copy) something else inside Emacs before
992 ;; yanking (pasting) what I'd originally intended to.
993 (save-interprogram-paste-before-kill t))
995 ;; save minibuffer history
996 (use-feature savehist
1000 (add-to-list 'savehist-additional-variables 'kill-ring))
1002 ;; automatically save place in files
1003 (use-feature saveplace
1004 :when (version< "25" emacs-version)
1005 :config (save-place-mode))
1007 (use-feature prog-mode
1008 :config (global-prettify-symbols-mode)
1009 (defun indicate-buffer-boundaries-left ()
1010 (setq indicate-buffer-boundaries 'left))
1011 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
1013 (use-feature text-mode
1014 :hook (text-mode . indicate-buffer-boundaries-left))
1016 (use-feature conf-mode
1019 (use-feature sh-mode
1022 (use-package company
1026 (:map company-active-map
1027 ([tab] . company-complete-common-or-cycle)
1028 ([escape] . company-abort
))
1030 (company-minimum-prefix-length 1)
1031 (company-selection-wrap-around t
)
1032 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
1033 (company-dabbrev-downcase nil
)
1034 (company-dabbrev-ignore-case nil
)
1036 (global-company-mode t
))
1038 (use-package flycheck
1040 :hook
(prog-mode . flycheck-mode
)
1042 (:map flycheck-mode-map
1043 ("M-P" . flycheck-previous-error
)
1044 ("M-N" . flycheck-next-error
))
1046 ;; Use the load-path from running Emacs when checking elisp files
1047 (setq flycheck-emacs-lisp-load-path
'inherit
)
1049 ;; Only flycheck when I actually save the buffer
1050 (setq flycheck-check-syntax-automatically
'(mode-enabled save
))
1051 :custom
(flycheck-mode-line-prefix "flyc"))
1053 (use-feature flyspell
1056 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
1060 ;; ’ can be part of a word
1061 (setq ispell-local-dictionary-alist
1062 `((nil "[[:alpha:]]" "[^[:alpha:]]"
1063 "['\x2019]" nil
("-B") nil utf-8
))
1064 ispell-program-name
(executable-find "hunspell"))
1065 ;; don't send ’ to the subprocess
1066 (defun endless/replace-apostrophe
(args)
1067 (cons (replace-regexp-in-string
1070 (advice-add #'ispell-send-string
:filter-args
1071 #'endless
/replace-apostrophe
)
1073 ;; convert ' back to ’ from the subprocess
1074 (defun endless/replace-quote
(args)
1075 (if (not (derived-mode-p 'org-mode
))
1077 (cons (replace-regexp-in-string
1080 (advice-add #'ispell-parse-output
:filter-args
1081 #'endless
/replace-quote
))
1085 :hook
(text-mode . abbrev-mode
))
1088 ;;; Programming modes
1090 (use-feature lisp-mode
1092 (defun indent-spaces-mode ()
1093 (setq indent-tabs-mode nil
))
1094 (add-hook 'lisp-interaction-mode-hook
#'indent-spaces-mode
))
1097 :delight
(reveal-mode " reveal")
1098 :hook
(emacs-lisp-mode . reveal-mode
))
1100 (use-feature elisp-mode
1101 :delight
(emacs-lisp-mode "Elisp" :major
))
1104 (use-package alloy-mode
1105 :straight
(:host github
:repo
"dwwmmn/alloy-mode")
1107 :config
(setq alloy-basic-offset
2))
1109 (eval-when-compile (defvar lean-mode-map
))
1110 (use-package lean-mode
1111 :straight
(:host github
:repo
"leanprover/lean-mode"
1112 :fork
(:repo
"notbandali/lean-mode" :branch
"remove-cl"))
1114 :bind
(:map lean-mode-map
1115 ("S-SPC" . company-complete
))
1117 (require 'lean-input
)
1118 (setq default-input-method
"Lean"
1119 lean-input-tweak-all
'(lean-input-compose
1120 (lean-input-prepend "/")
1121 (lean-input-nonempty))
1122 lean-input-user-translations
'(("/" "/")))
1126 (use-package proof-site
; for Coq
1127 :straight proof-general
)
1129 (use-package haskell-mode
1131 (setq haskell-indentation-layout-offset
4
1132 haskell-indentation-left-offset
4
1133 flycheck-checker
'haskell-hlint
1134 flycheck-disabled-checkers
'(haskell-stack-ghc haskell-ghc
)))
1138 :commands dante-mode
1139 :hook
(haskell-mode . dante-mode
))
1141 (use-package hlint-refactor
1143 :bind
(:map hlint-refactor-mode-map
1144 ("C-c l b" . hlint-refactor-refactor-buffer
)
1145 ("C-c l r" . hlint-refactor-refactor-at-point
))
1146 :hook
(haskell-mode . hlint-refactor-mode
))
1148 (use-package flycheck-haskell
1149 :after haskell-mode
)
1150 ;; alternative: hs-lint https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el
1153 (use-feature sgml-mode
1155 (setq sgml-basic-offset
2))
1157 (use-feature css-mode
1159 (setq css-indent-offset
2))
1161 (use-package web-mode
1165 web-mode-code-indent-offset
1166 web-mode-css-indent-offset
1167 web-mode-markup-indent-offset
))
1169 (use-package emmet-mode
1170 :after
(:any web-mode css-mode sgml-mode
)
1171 :bind
* (("C-)" . emmet-next-edit-point
)
1172 ("C-(" . emmet-prev-edit-point
))
1174 (unbind-key "C-j" emmet-mode-keymap
)
1175 (setq emmet-move-cursor-between-quotes t
)
1176 :hook
(web-mode css-mode html-mode sgml-mode
))
1179 (use-package meghanada
1181 (:map meghanada-mode-map
1182 (("C-M-o" . meghanada-optimize-import
)
1183 ("C-M-t" . meghanada-import-all
)))
1184 :hook
(java-mode . meghanada-mode
)))
1187 (use-package treemacs
1188 :config
(setq treemacs-never-persist t
))
1190 (use-package yasnippet
1192 ;; (yas-global-mode)
1195 (use-package lsp-mode
1196 :init
(setq lsp-eldoc-render-all nil
1197 lsp-highlight-symbol-at-point nil
)
1202 (use-package company-lsp
1205 (setq company-lsp-cache-candidates t
1206 company-lsp-async t
))
1210 (setq lsp-ui-sideline-update-mode
'point
))
1212 (use-package lsp-java
1214 (add-hook 'java-mode-hook
1216 (setq-local company-backends
(list 'company-lsp
))))
1218 (add-hook 'java-mode-hook
'lsp-java-enable
)
1219 (add-hook 'java-mode-hook
'flycheck-mode
)
1220 (add-hook 'java-mode-hook
'company-mode
)
1221 (add-hook 'java-mode-hook
'lsp-ui-mode
))
1223 (use-package dap-mode
1229 (use-package dap-java
1232 (use-package lsp-java-treemacs
1237 :bind
(:map eclim-mode-map
("S-SPC" . company-complete
))
1238 :hook
((java-mode . eclim-mode
)
1239 (eclim-mode .
(lambda ()
1240 (make-local-variable 'company-idle-delay
)
1241 (defvar company-idle-delay
)
1242 ;; (setq company-idle-delay 0.7)
1243 (setq company-idle-delay nil
))))
1245 (eclim-auto-save nil
)
1246 ;; (eclimd-default-workspace "~/src/eclipse-workspace-exp")
1247 (eclim-executable "~/.p2/pool/plugins/org.eclim_2.8.0/bin/eclim")
1248 (eclim-eclipse-dirs '("~/usr/eclipse/dsl-2018-09/eclipse"))))
1250 (use-package geiser
)
1252 (use-feature geiser-guile
1254 (setq geiser-guile-load-path
"~/src/git/guix"))
1261 (font-latex-fontify-sectioning 'color
)))
1263 (use-package go-mode
)
1265 (use-package po-mode
1267 (po-mode .
(lambda () (run-with-timer 0.1 nil
'View-exit
))))
1269 (use-feature tex-mode
1272 (lambda (p) (string-match "^---?" (car p
)))
1273 tex--prettify-symbols-alist
)
1274 :hook
((tex-mode . auto-fill-mode
)
1275 (tex-mode . flyspell-mode
)
1276 (tex-mode .
(lambda () (electric-indent-local-mode -
1)))))
1281 (add-to-list 'custom-theme-load-path
1283 (convert-standard-filename "lisp") user-emacs-directory
))
1284 (load-theme 'tangomod t
)
1286 (use-package smart-mode-line
1287 :commands
(sml/apply-theme
)
1291 (smart-mode-line-enable))
1293 (use-package doom-themes
)
1295 (defvar b
/org-mode-font-lock-keywords
1296 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
1297 (1 '(:foreground
"#5a5b5a" :background
"#292b2b") t
) ; directive
1298 (3 '(:foreground
"#81a2be" :background
"#292b2b") t
) ; kind
1299 (4 '(:foreground
"#c5c8c6") t
)))) ; title
1301 (defun b/lights-on
()
1302 "Enable my favourite light theme."
1304 (mapc #'disable-theme custom-enabled-themes
)
1305 (load-theme 'tangomod t
)
1306 (sml/apply-theme
'automatic
)
1307 (font-lock-remove-keywords
1308 'org-mode b
/org-mode-font-lock-keywords
))
1310 (defun b/lights-off
()
1313 (mapc #'disable-theme custom-enabled-themes
)
1314 (load-theme 'doom-tomorrow-night t
)
1315 (sml/apply-theme
'automatic
)
1316 (font-lock-add-keywords
1317 'org-mode b
/org-mode-font-lock-keywords t
))
1320 ("C-c t d" . b
/lights-off
)
1321 ("C-c t l" . b
/lights-on
))
1324 ;;; Emacs enhancements & auxiliary packages
1327 :config
(setq Man-width
80))
1329 (use-package which-key
1333 (which-key-add-key-based-replacements
1334 ;; prefixes for global prefixes and minor modes
1338 "C-c 8 -" "typo/dashes"
1339 "C-c 8 <" "typo/left-brackets"
1340 "C-c 8 >" "typo/right-brackets"
1342 "C-x a" "abbrev/expand"
1343 "C-x r" "rectangle/register/bookmark"
1344 "C-x v" "version control"
1345 ;; prefixes for my personal bindings
1346 "C-c a" "applications"
1351 "C-c c" "compile-and-comments"
1357 "C-c m" "multiple-cursors"
1358 "C-c P" "projectile"
1359 "C-c P s" "projectile/search"
1360 "C-c P x" "projectile/execute"
1361 "C-c P 4" "projectile/other-window"
1367 ;; prefixes for major modes
1368 (which-key-add-major-mode-key-based-replacements 'message-mode
1369 "C-c f n" "footnote")
1370 (which-key-add-major-mode-key-based-replacements 'org-mode
1371 "C-c C-v" "org-babel")
1372 (which-key-add-major-mode-key-based-replacements 'web-mode
1373 "C-c C-a" "web/attributes"
1374 "C-c C-b" "web/blocks"
1376 "C-c C-e" "web/element"
1377 "C-c C-t" "web/tags")
1381 (which-key-add-column-padding 5)
1382 (which-key-max-description-length 32))
1384 (use-package crux
; results in Waiting for git... [2 times]
1386 :bind
(("C-c d" . crux-duplicate-current-line-or-region
)
1387 ("C-c D" . crux-duplicate-and-comment-current-line-or-region
)
1388 ("C-c f c" . crux-copy-file-preserve-attributes
)
1389 ("C-c f d" . crux-delete-file-and-buffer
)
1390 ("C-c f r" . crux-rename-file-and-buffer
)
1391 ("C-c j" . crux-top-join-line
)
1392 ("C-S-j" . crux-top-join-line
)))
1395 :bind
(("C-a" . mwim-beginning-of-code-or-line
)
1396 ("C-e" . mwim-end-of-code-or-line
)
1397 ("<home>" . mwim-beginning-of-line-or-code
)
1398 ("<end>" . mwim-end-of-line-or-code
)))
1400 (use-package projectile
1402 :bind-keymap
("C-c P" . projectile-command-map
)
1406 (defun b/projectile-mode-line-fun
()
1407 "Report project name and type in the modeline."
1408 (let ((project-name (projectile-project-name))
1409 (project-type (projectile-project-type)))
1411 projectile-mode-line-prefix
1413 (format ":%s" project-type
)
1415 (setq projectile-mode-line-function
'b
/projectile-mode-line-fun
)
1417 (defun my-projectile-invalidate-cache (&rest _args
)
1418 ;; ignore the args to `magit-checkout'
1419 (projectile-invalidate-cache nil
))
1421 (eval-after-load 'magit-branch
1423 (advice-add 'magit-checkout
1424 :after
#'my-projectile-invalidate-cache
)
1425 (advice-add 'magit-branch-and-checkout
1426 :after
#'my-projectile-invalidate-cache
)))
1428 (projectile-completion-system 'ivy
)
1429 (projectile-mode-line-prefix " proj"))
1431 (use-package helpful
1434 (("C-S-h c" . helpful-command
)
1435 ("C-S-h f" . helpful-callable
) ; helpful-function
1436 ("C-S-h v" . helpful-variable
)
1437 ("C-S-h k" . helpful-key
)
1438 ("C-S-h p" . helpful-at-point
)))
1440 (use-package unkillable-scratch
1443 (unkillable-scratch 1)
1445 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1448 ;; | make pretty boxed quotes like this
1450 (use-package boxquote
1453 (:prefix-map b
/boxquote-prefix-map
1455 ("b" . boxquote-buffer
)
1456 ("B" . boxquote-insert-buffer
)
1457 ("d" . boxquote-defun
)
1458 ("F" . boxquote-insert-file
)
1459 ("hf" . boxquote-describe-function
)
1460 ("hk" . boxquote-describe-key
)
1461 ("hv" . boxquote-describe-variable
)
1462 ("hw" . boxquote-where-is
)
1463 ("k" . boxquote-kill
)
1464 ("p" . boxquote-paragraph
)
1465 ("q" . boxquote-boxquote
)
1466 ("r" . boxquote-region
)
1467 ("s" . boxquote-shell-command
)
1468 ("t" . boxquote-text
)
1469 ("T" . boxquote-title
)
1470 ("u" . boxquote-unbox
)
1471 ("U" . boxquote-unbox-region
)
1472 ("y" . boxquote-yank
)
1473 ("M-q" . boxquote-fill-paragraph
)
1474 ("M-w" . boxquote-kill-ring-save
)))
1476 (use-package orgalist
1477 ;; http://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00007.html
1480 :hook
(message-mode . orgalist-mode
))
1482 ;; easily type pretty quotes & other typography, like ‘’“”-–—«»‹›
1487 (typo-global-mode 1)
1488 :hook
(((text-mode erc-mode
) . typo-mode
)
1489 (tex-mode .
(lambda ()(typo-mode -
1)))))
1491 ;; highlight TODOs in buffers
1492 (use-package hl-todo
1495 (global-hl-todo-mode))
1497 (use-package shrink-path
1501 (defvar user-
@-host
(concat (user-login-name) "@" (system-name) " "))
1502 (defun +eshell
/prompt
()
1503 (let ((base/dir
(shrink-path-prompt default-directory
)))
1504 (concat (propertize user-
@-host
'face
'default
)
1505 (propertize (car base
/dir
)
1506 'face
'font-lock-comment-face
)
1507 (propertize (cdr base
/dir
)
1508 'face
'font-lock-constant-face
)
1509 (propertize "> " 'face
'default
))))
1510 (setq eshell-prompt-regexp
(concat user-
@-host
".*> ")
1511 eshell-prompt-function
#'+eshell
/prompt
))
1513 (use-package eshell-up
1515 :commands eshell-up
)
1517 (use-package multi-term
1519 :bind
(("C-c a s m m" . multi-term
)
1520 ("C-c a s m d" . multi-term-dedicated-toggle
)
1521 ("C-c a s m p" . multi-term-prev
)
1522 ("C-c a s m n" . multi-term-next
)
1524 ("C-c C-j" . term-char-mode
))
1526 (setq multi-term-program
"screen"
1527 multi-term-program-switches
(concat "-c"
1528 (getenv "XDG_CONFIG_HOME")
1530 ;; TODO: add separate bindings for connecting to existing
1531 ;; session vs. always creating a new one
1532 multi-term-dedicated-select-after-open-p t
1533 multi-term-dedicated-window-height
20
1534 multi-term-dedicated-max-window-height
30
1536 '(("C-c C-c" . term-interrupt-subjob
)
1537 ("C-c C-e" . term-send-esc
)
1538 ("C-c C-j" . term-line-mode
)
1540 ;; ("C-y" . term-paste)
1541 ("C-y" . term-send-raw
)
1542 ("M-f" . term-send-forward-word
)
1543 ("M-b" . term-send-backward-word
)
1544 ("M-p" . term-send-up
)
1545 ("M-n" . term-send-down
)
1546 ("M-j" . term-send-raw-meta
)
1547 ("M-y" . term-send-raw-meta
)
1548 ("M-/" . term-send-raw-meta
)
1549 ("M-0" . term-send-raw-meta
)
1550 ("M-1" . term-send-raw-meta
)
1551 ("M-2" . term-send-raw-meta
)
1552 ("M-3" . term-send-raw-meta
)
1553 ("M-4" . term-send-raw-meta
)
1554 ("M-5" . term-send-raw-meta
)
1555 ("M-6" . term-send-raw-meta
)
1556 ("M-7" . term-send-raw-meta
)
1557 ("M-8" . term-send-raw-meta
)
1558 ("M-9" . term-send-raw-meta
)
1559 ("<C-backspace>" . term-send-backward-kill-word
)
1560 ("<M-DEL>" . term-send-backward-kill-word
)
1561 ("M-d" . term-send-delete-word
)
1562 ("M-," . term-send-raw
)
1563 ("M-." . comint-dynamic-complete
))
1564 term-unbind-key-alist
1565 '("C-z" "C-x" "C-c" "C-h"
1569 (use-package page-break-lines
1573 (page-break-lines-max-width fill-column
)
1575 (global-page-break-lines-mode))
1577 (use-package expand-region
1578 :bind
("C-=" . er
/expand-region
))
1580 (use-package multiple-cursors
1582 (("C-S-<mouse-1>" . mc
/add-cursor-on-click
)
1583 (:prefix-map b
/mc-prefix-map
1585 ("c" . mc
/edit-lines
)
1586 ("n" . mc
/mark-next-like-this
)
1587 ("p" . mc
/mark-previous-like-this
)
1588 ("a" . mc
/mark-all-like-this
))))
1596 (use-package yasnippet
1599 (defconst yas-verbosity-cur yas-verbosity
)
1600 (setq yas-verbosity
2)
1601 (add-to-list 'yas-snippet-dirs
"~/src/git/guix/etc/snippets" t
)
1603 (setq yas-verbosity yas-verbosity-cur
)
1605 (defun b/yas--maybe-expand-key-filter
(cmd)
1606 (when (and (yas--maybe-expand-key-filter cmd
)
1607 (not (bound-and-true-p git-commit-mode
)))
1609 (defconst b
/yas-maybe-expand
1610 '(menu-item "" yas-expand
:filter b
/yas--maybe-expand-key-filter
))
1611 (define-key yas-minor-mode-map
1612 (kbd "SPC") b
/yas-maybe-expand
)
1616 (use-package debbugs
1619 :repo
"emacs-straight/debbugs"
1620 :files
(:defaults
"Debbugs.wsdl")))
1622 (use-package org-ref
1624 (b/setq-every
'("~/usr/org/references.bib")
1625 reftex-default-bibliography
1626 org-ref-default-bibliography
)
1628 org-ref-bibliography-notes
"~/usr/org/notes.org"
1629 org-ref-pdf-directory
"~/usr/org/bibtex-pdfs/"))
1633 :init
(setq alert-default-style
'notifications
))
1635 ;; (use-package fill-column-indicator)
1637 (use-package emojify
1638 :hook
(erc-mode . emojify-mode
))
1642 (("C-c w <right>" . split-window-right
)
1643 ("C-c w <down>" . split-window-below
)
1644 ("C-c w s l" . split-window-right
)
1645 ("C-c w s j" . split-window-below
)
1646 ("C-c w q" . quit-window
))
1648 (split-width-threshold 150))
1650 (use-feature windmove
1653 (("C-c w h" . windmove-left
)
1654 ("C-c w j" . windmove-down
)
1655 ("C-c w k" . windmove-up
)
1656 ("C-c w l" . windmove-right
)
1657 ("C-c w H" . windmove-swap-states-left
)
1658 ("C-c w J" . windmove-swap-states-down
)
1659 ("C-c w K" . windmove-swap-states-up
)
1660 ("C-c w L" . windmove-swap-states-right
)))
1664 :bind
("C-c a p" . pass
)
1665 :hook
(pass-mode . View-exit
))
1667 (use-package pdf-tools
1669 :bind
(:map pdf-view-mode-map
1670 ("<C-XF86Back>" . pdf-history-backward
)
1671 ("<mouse-8>" . pdf-history-backward
)
1672 ("<drag-mouse-8>" . pdf-history-backward
)
1673 ("<C-XF86Forward>" . pdf-history-forward
)
1674 ("<mouse-9>" . pdf-history-forward
)
1675 ("<drag-mouse-9>" . pdf-history-forward
)
1676 ("M-RET" . image-previous-line
))
1677 :config
(pdf-tools-install nil t
)
1678 :custom
(pdf-view-resize-factor 1.05))
1680 (use-package biblio
)
1683 :hook
(latex-mode . reftex-mode
))
1685 (use-feature reftex-cite
1687 :disabled
; enable to disable
1688 ; reftex-cite's default choice
1691 (defun reftex-get-bibkey-default ()
1692 "If the cursor is in a citation macro, return the word before the macro."
1693 (let* ((macro (reftex-what-macro 1)))
1695 (when (and macro
(string-match "cite" (car macro
)))
1696 (goto-char (cdr macro
)))
1697 (reftex-this-word)))))
1700 ;;; Email (with Gnus)
1702 (defvar b
/maildir
(expand-file-name "~/mail/"))
1703 (with-eval-after-load 'recentf
1704 (add-to-list 'recentf-exclude b
/maildir
))
1707 b
/gnus-init-file
(b/etc
"gnus")
1708 mail-user-agent
'gnus-user-agent
1709 read-mail-command
'gnus
)
1712 :bind
(("s-m" . gnus
)
1713 ("s-M" . gnus-unplugged
)
1715 ("C-c a M" . gnus-unplugged
))
1718 gnus-select-method
'(nnnil "")
1719 gnus-secondary-select-methods
1720 '((nnimap "shemshak"
1721 (nnimap-stream plain
)
1722 (nnimap-address "127.0.0.1")
1723 (nnimap-server-port 143)
1724 (nnimap-authenticator plain
)
1725 (nnimap-user "amin@shemshak.local"))
1727 (nnimap-stream plain
)
1728 (nnimap-address "127.0.0.1")
1729 (nnimap-server-port 143)
1730 (nnimap-authenticator plain
)
1731 (nnimap-user "bandali@gnu.local")
1732 (nnimap-inbox "INBOX")
1733 (nnimap-split-methods 'nnimap-split-fancy
)
1734 (nnimap-split-fancy (|
1735 ;; (: gnus-registry-split-fancy-with-parent)
1736 ;; (: gnus-group-split-fancy "INBOX" t "INBOX")
1738 (list ".*<\\(.*\\)\\.\\(non\\)?gnu\\.org>.*" "l.\\1")
1739 ;; *@lists.sr.ht, omitting one dot if present
1740 ;; add more \\.?\\([^.@]*\\) if needed
1741 (list ".*<~\\(.*\\)/\\([^.@]*\\)\\.?\\([^.@]*\\)@lists.sr.ht>.*" "l.~\\1.\\2\\3")
1743 (from "webmasters\\(-comment\\)?@gnu\\.org" "webmasters")
1745 (list ".*atreus.freelists.org" "l.atreus")
1746 (list ".*deepspec.lists.cs.princeton.edu" "l.deepspec")
1747 ;; (list ".*haskell-art.we.lurk.org" "l.haskell.art") ;d
1748 (list ".*haskell-cafe.haskell.org" "l.haskell-cafe")
1749 ;; (list ".*notmuch.notmuchmail.org" "l.notmuch") ;u
1750 ;; (list ".*dev.lists.parabola.nu" "l.parabola-dev") ;u
1751 ;; ----------------------------------
1752 ;; legend: (u)nsubscribed | (d)ead
1753 ;; ----------------------------------
1754 ;; otherwise, leave mail in INBOX
1757 (nnimap-stream plain
)
1758 (nnimap-address "127.0.0.1")
1759 (nnimap-server-port 143)
1760 (nnimap-authenticator plain
)
1761 (nnimap-user "abandali@uw.local")
1762 (nnimap-inbox "INBOX")
1763 (nnimap-split-methods 'nnimap-split-fancy
)
1764 (nnimap-split-fancy (|
1765 ;; (: gnus-registry-split-fancy-with-parent)
1767 ("subject" "SE\\s-?212" "course.se212-f19")
1768 (from "SE\\s-?212" "course.se212-f19")
1772 (nnimap-stream plain
)
1773 (nnimap-address "127.0.0.1")
1774 (nnimap-server-port 143)
1775 (nnimap-authenticator plain
)
1776 (nnimap-user "abandali@csc.uw.local")))
1777 gnus-message-archive-group
"nnimap+shemshak:Sent"
1780 (to-address .
"atreus@freelists.org")
1781 (to-list .
"atreus@freelists.org"))
1783 (to-address .
"deepspec@lists.cs.princeton.edu")
1784 (to-list .
"deepspec@lists.cs.princeton.edu")
1785 (list-identifier .
"\\[deepspec\\]"))
1787 (to-address .
"emacs-devel@gnu.org")
1788 (to-list .
"emacs-devel@gnu.org"))
1789 ("l\\.help-gnu-emacs"
1790 (to-address .
"help-gnu-emacs@gnu.org")
1791 (to-list .
"help-gnu-emacs@gnu.org"))
1792 ("l\\.info-gnu-emacs"
1793 (to-address .
"info-gnu-emacs@gnu.org")
1794 (to-list .
"info-gnu-emacs@gnu.org"))
1795 ("l\\.emacs-orgmode"
1796 (to-address .
"emacs-orgmode@gnu.org")
1797 (to-list .
"emacs-orgmode@gnu.org")
1798 (list-identifier .
"\\[O\\]"))
1799 ("l\\.emacs-tangents"
1800 (to-address .
"emacs-tangents@gnu.org")
1801 (to-list .
"emacs-tangents@gnu.org"))
1802 ("l\\.emacsconf-discuss"
1803 (to-address .
"emacsconf-discuss@gnu.org")
1804 (to-list .
"emacsconf-discuss@gnu.org"))
1805 ("l\\.emacsconf-register"
1806 (to-address .
"emacsconf-register@gnu.org")
1807 (to-list .
"emacsconf-register@gnu.org"))
1808 ("l\\.emacsconf-submit"
1809 (to-address .
"emacsconf-submit@gnu.org")
1810 (to-list .
"emacsconf-submit@gnu.org"))
1811 ("l\\.fencepost-users"
1812 (to-address .
"fencepost-users@gnu.org")
1813 (to-list .
"fencepost-users@gnu.org")
1814 (list-identifier .
"\\[Fencepost-users\\]"))
1815 ("l\\.gnewsense-art"
1816 (to-address .
"gnewsense-art@nongnu.org")
1817 (to-list .
"gnewsense-art@nongnu.org")
1818 (list-identifier .
"\\[gNewSense-art\\]"))
1819 ("l\\.gnewsense-dev"
1820 (to-address .
"gnewsense-dev@nongnu.org")
1821 (to-list .
"gnewsense-dev@nongnu.org")
1822 (list-identifier .
"\\[Gnewsense-dev\\]"))
1823 ("l\\.gnewsense-users"
1824 (to-address .
"gnewsense-users@nongnu.org")
1825 (to-list .
"gnewsense-users@nongnu.org")
1826 (list-identifier .
"\\[gNewSense-users\\]"))
1827 ("l\\.gnunet-developers"
1828 (to-address .
"gnunet-developers@gnu.org")
1829 (to-list .
"gnunet-developers@gnu.org")
1830 (list-identifier .
"\\[GNUnet-developers\\]"))
1832 (to-address .
"help-gnunet@gnu.org")
1833 (to-list .
"help-gnunet@gnu.org")
1834 (list-identifier .
"\\[Help-gnunet\\]"))
1836 (to-address .
"bug-gnuzilla@gnu.org")
1837 (to-list .
"bug-gnuzilla@gnu.org")
1838 (list-identifier .
"\\[Bug-gnuzilla\\]"))
1840 (to-address .
"gnuzilla-dev@gnu.org")
1841 (to-list .
"gnuzilla-dev@gnu.org")
1842 (list-identifier .
"\\[Gnuzilla-dev\\]"))
1844 (to-address .
"guile-devel@gnu.org")
1845 (to-list .
"guile-devel@gnu.org"))
1847 (to-address .
"guile-user@gnu.org")
1848 (to-list .
"guile-user@gnu.org"))
1850 (to-address .
"guix-devel@gnu.org")
1851 (to-list .
"guix-devel@gnu.org"))
1853 (to-address .
"help-guix@gnu.org")
1854 (to-list .
"help-guix@gnu.org"))
1856 (to-address .
"info-guix@gnu.org")
1857 (to-list .
"info-guix@gnu.org"))
1858 ("l\\.savannah-hackers-public"
1859 (to-address .
"savannah-hackers-public@gnu.org")
1860 (to-list .
"savannah-hackers-public@gnu.org"))
1861 ("l\\.savannah-users"
1862 (to-address .
"savannah-users@gnu.org")
1863 (to-list .
"savannah-users@gnu.org"))
1865 (to-address .
"www-commits@gnu.org")
1866 (to-list .
"www-commits@gnu.org"))
1868 (to-address .
"www-discuss@gnu.org")
1869 (to-list .
"www-discuss@gnu.org"))
1871 (to-address .
"haskell-art@we.lurk.org")
1872 (to-list .
"haskell-art@we.lurk.org")
1873 (list-identifier .
"\\[haskell-art\\]"))
1875 (to-address .
"haskell-cafe@haskell.org")
1876 (to-list .
"haskell-cafe@haskell.org")
1877 (list-identifier .
"\\[Haskell-cafe\\]"))
1879 (to-address .
"notmuch@notmuchmail.org")
1880 (to-list .
"notmuch@notmuchmail.org"))
1882 (to-address .
"dev@lists.parabola.nu")
1883 (to-list .
"dev@lists.parabola.nu")
1884 (list-identifier .
"\\[Dev\\]"))
1885 ("l\\.~bandali\\.public-inbox"
1886 (to-address .
"~bandali/public-inbox@lists.sr.ht")
1887 (to-list .
"~bandali/public-inbox@lists.sr.ht"))
1888 ("l\\.~sircmpwn\\.free-writers-club"
1889 (to-address .
"~sircmpwn/free-writers-club@lists.sr.ht")
1890 (to-list .
"~sircmpwn/free-writers-club@lists.sr.ht"))
1891 ("l\\.~sircmpwn\\.srht-admins"
1892 (to-address .
"~sircmpwn/sr.ht-admins@lists.sr.ht")
1893 (to-list .
"~sircmpwn/sr.ht-admins@lists.sr.ht"))
1894 ("l\\.~sircmpwn\\.srht-announce"
1895 (to-address .
"~sircmpwn/sr.ht-announce@lists.sr.ht")
1896 (to-list .
"~sircmpwn/sr.ht-announce@lists.sr.ht"))
1897 ("l\\.~sircmpwn\\.srht-dev"
1898 (to-address .
"~sircmpwn/sr.ht-dev@lists.sr.ht")
1899 (to-list .
"~sircmpwn/sr.ht-dev@lists.sr.ht"))
1900 ("l\\.~sircmpwn\\.srht-discuss"
1901 (to-address .
"~sircmpwn/sr.ht-discuss@lists.sr.ht")
1902 (to-list .
"~sircmpwn/sr.ht-discuss@lists.sr.ht"))
1904 (to-address .
"webmasters@gnu.org")
1905 (to-list .
"webmasters@gnu.org"))
1912 gnus-large-newsgroup
50
1913 gnus-home-directory
(b/var
"gnus/")
1914 gnus-directory
(concat gnus-home-directory
"news/")
1915 message-directory
(concat gnus-home-directory
"mail/")
1916 nndraft-directory
(concat gnus-home-directory
"drafts/")
1917 gnus-save-newsrc-file nil
1918 gnus-read-newsrc-file nil
1919 gnus-interactive-exit nil
1920 gnus-gcc-mark-as-read t
)
1924 (require 'ebdb-gnus
)
1926 (when (version< emacs-version
"27")
1928 'nnmail-split-abbrev-alist
1929 '(list .
"list-id\\|list-post\\|x-mailing-list\\|x-beenthere\\|x-loop")
1932 ;; (gnus-registry-initialize)
1934 (with-eval-after-load 'recentf
1935 (add-to-list 'recentf-exclude gnus-home-directory
)))
1937 (use-feature gnus-art
1940 gnus-buttonized-mime-types
'("multipart/\\(signed\\|encrypted\\)")
1941 gnus-visible-headers
1942 (concat gnus-visible-headers
"\\|^List-Id:\\|^X-RT-Originator:\\|^User-Agent:")
1943 gnus-sorted-header-list
1944 '("^From:" "^Subject:" "^Summary:" "^Keywords:"
1945 "^Followup-To:" "^To:" "^Cc:" "X-RT-Originator"
1946 "^Newsgroups:" "List-Id:" "^Organization:"
1947 "^User-Agent:" "^Date:")
1948 ;; local-lapsed article dates
1949 ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11
1950 gnus-article-date-headers
'(user-defined)
1951 gnus-article-time-format
1953 (let* ((date (format-time-string "%a, %d %b %Y %T %z" time
))
1954 (local (article-make-date-line date
'local
))
1955 (combined-lapsed (article-make-date-line date
1958 (string-match " (.+" combined-lapsed
)
1959 (match-string 0 combined-lapsed
))))
1960 (concat local lapsed
))))
1962 :map gnus-article-mode-map
1963 ("M-L" . org-store-link
)))
1965 (use-feature gnus-sum
1966 :bind
(:map gnus-summary-mode-map
1967 :prefix-map b
/gnus-summary-prefix-map
1969 ("r" . gnus-summary-reply
)
1970 ("w" . gnus-summary-wide-reply
)
1971 ("v" . gnus-summary-show-raw-article
))
1974 :map gnus-summary-mode-map
1975 ("M-L" . org-store-link
))
1976 :hook
(gnus-summary-mode . b
/no-mouse-autoselect-window
)
1978 (gnus-thread-sort-functions '(gnus-thread-sort-by-number
1979 gnus-thread-sort-by-subject
1980 gnus-thread-sort-by-date
)))
1982 (use-feature gnus-msg
1984 (defvar b
/signature
"Amin Bandali
1985 Free Software Activist | GNU Webmaster & Volunteer
1986 GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103
1987 https://shemshak.org/~amin")
1988 (defvar b
/gnu-signature
"Amin Bandali
1989 Free Software Activist | GNU Webmaster & Volunteer
1990 GPG: BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103
1991 https://bandali.eu.org")
1992 (defvar b
/uw-signature
"Amin Bandali, MMath Student
1993 Cheriton School of Computer Science
1994 University of Waterloo
1995 https://bandali.eu.org")
1996 (defvar b
/csc-signature
"Amin Bandali
1998 Computer Science Club, University of Waterloo
1999 https://csclub.uwaterloo.ca/~abandali")
2000 (setq gnus-posting-styles
2002 (address "amin@shemshak.org")
2004 (signature b
/signature
)
2005 (eval (setq b
/message-cite-say-hi t
)))
2007 (address "bandali@gnu.org")
2008 (signature b
/gnu-signature
)
2009 (eval (set (make-local-variable 'message-user-fqdn
) "fencepost.gnu.org")))
2010 ((header "subject" "ThankCRM")
2011 (to "webmasters-comment@gnu.org")
2013 (eval (setq b
/message-cite-say-hi nil
)))
2015 (address "abandali@uwaterloo.ca")
2016 (signature b
/uw-signature
))
2017 ("nnimap\\+uw:INBOX"
2018 (gcc "\"nnimap+uw:Sent Items\""))
2020 (address "abandali@csclub.uwaterloo.ca")
2021 (signature b
/csc-signature
)
2022 (gcc "nnimap+csc:Sent")))))
2024 (use-feature gnus-topic
2025 :hook
(gnus-group-mode . gnus-topic-mode
)
2026 :config
(setq gnus-topic-line-format
"%i[ %A: %(%{%n%}%) ]%v\n"))
2028 (use-feature gnus-agent
2030 (setq gnus-agent-synchronize-flags
'ask
)
2031 :hook
(gnus-group-mode . gnus-agent-mode
))
2033 (use-feature gnus-group
2035 (setq gnus-permanently-visible-groups
"\\(:INBOX$\\|:gnu$\\)"))
2038 ;; problematic with ebdb's popup, *EBDB-Gnus*
2039 (use-feature gnus-win
2041 (setq gnus-use-full-window nil
)))
2043 (use-feature gnus-dired
2044 :commands gnus-dired-mode
2046 (add-hook 'dired-mode-hook
'gnus-dired-mode
))
2048 (use-feature mm-decode
2050 (setq mm-discouraged-alternatives
'("text/html" "text/richtext")
2051 mm-decrypt-option
'known
2052 mm-verify-option
'known
))
2054 (use-feature sendmail
2056 (setq sendmail-program
(executable-find "msmtp")
2057 ;; message-sendmail-extra-arguments '("-v" "-d")
2058 mail-specify-envelope-from t
2059 mail-envelope-from
'header
))
2061 (use-feature message
2063 ;; redefine for a simplified In-Reply-To header
2064 ;; (see https://todo.sr.ht/~sircmpwn/lists.sr.ht/67)
2065 (defun message-make-in-reply-to ()
2066 "Return the In-Reply-To header for this message."
2067 (when message-reply-headers
2068 (let ((from (mail-header-from message-reply-headers
))
2069 (msg-id (mail-header-id message-reply-headers
)))
2073 (defconst b
/message-cite-style-format
"On %Y-%m-%d %l:%M %p, %N wrote:")
2074 (defconst message-cite-style-bandali
2075 '((message-cite-function 'message-cite-original
)
2076 (message-citation-line-function 'message-insert-formatted-citation-line
)
2077 (message-cite-reply-position 'traditional
)
2078 (message-yank-prefix "> ")
2079 (message-yank-cited-prefix ">")
2080 (message-yank-empty-prefix ">")
2081 (message-citation-line-format
2082 (if b
/message-cite-say-hi
2083 (concat "Hi %F,\n\n" b
/message-cite-style-format
)
2084 b
/message-cite-style-format
)))
2085 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
2086 (setq ;; message-cite-style 'message-cite-style-bandali
2087 message-kill-buffer-on-exit t
2088 message-send-mail-function
'message-send-mail-with-sendmail
2089 message-sendmail-envelope-from
'header
2090 message-subscribed-address-functions
2091 '(gnus-find-subscribed-addresses)
2092 message-dont-reply-to-names
2093 "\\(\\(\\(amin\\|mab\\)@shemshak\\.org\\)\\|\\(amin@bndl\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|\\(a\\(min\\.\\)?bandali@uwaterloo\\.ca\\)\\|\\(abandali@csclub\\.uwaterloo\\.ca\\)\\)")
2094 (require 'company-ebdb
)
2095 :hook
(;; (message-setup . mml-secure-message-sign-pgpmime)
2096 (message-mode . flyspell-mode
)
2097 (message-mode .
(lambda ()
2098 ;; (setq fill-column 65
2099 ;; message-fill-column 65)
2100 (make-local-variable 'company-idle-delay
)
2101 (setq company-idle-delay
0.2))))
2103 ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
2104 ;; (message-header-to ((t (:foreground "#111" :weight normal))))
2105 ;; (message-header-cc ((t (:foreground "#333" :weight normal))))
2111 (use-feature mml-sec
2113 (mml-secure-openpgp-encrypt-to-self t
)
2114 (mml-secure-openpgp-sign-with-sender t
))
2116 (use-feature footnote
2119 ;; (setq footnote-start-tag ""
2120 ;; footnote-end-tag ""
2121 ;; footnote-style 'unicode)
2123 (:map message-mode-map
2124 :prefix-map b
/footnote-prefix-map
2126 ("a" . footnote-add-footnote
)
2127 ("b" . footnote-back-to-message
)
2128 ("c" . footnote-cycle-style
)
2129 ("d" . footnote-delete-footnote
)
2130 ("g" . footnote-goto-footnote
)
2131 ("r" . footnote-renumber-footnotes
)
2132 ("s" . footnote-set-style
)))
2136 :bind
(:map gnus-group-mode-map
("e" . ebdb
))
2138 (setq ebdb-sources
(b/var
"ebdb"))
2139 (with-eval-after-load 'swiper
2140 (add-to-list 'swiper-font-lock-exclude
'ebdb-mode t
)))
2142 (use-feature ebdb-com
2145 ;; (use-package ebdb-complete
2148 ;; (ebdb-complete-enable))
2150 (use-package company-ebdb
2152 (defun company-ebdb--post-complete (_) nil
))
2154 (use-feature ebdb-gnus
2157 (ebdb-gnus-window-size 0.3))
2159 (use-feature ebdb-mua
2161 ;; :custom (ebdb-mua-pop-up nil)
2164 ;; (use-package ebdb-message
2167 ;; (use-package ebdb-vcard
2170 (use-package message-x
)
2173 (use-package message-x
2175 (message-x-completion-alist
2177 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address
)
2180 (quote message-newgroups-header-regexp
))
2181 message-newgroups-header-regexp message-newsgroups-header-regexp
)
2182 . message-expand-group
))))))
2185 (use-package gnus-harvest
2186 :commands gnus-harvest-install
2189 (if (featurep 'message-x
)
2190 (gnus-harvest-install 'message-x
)
2191 (gnus-harvest-install))))
2193 (use-feature gnus-article-treat-patch
2198 (setq ft
/gnus-article-patch-conditions
2199 '("^@@ -[0-9]+,[0-9]+ \\+[0-9]+,[0-9]+ @@")))
2202 ;;; IRC (with ERC and ZNC)
2205 :bind
(("C-c b e" . erc-switch-to-buffer
)
2207 ("M-a" . erc-track-switch-buffer
))
2209 (erc-join-buffer 'bury
)
2210 (erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
2211 (erc-nick "bandali")
2213 (erc-rename-buffers t
)
2214 (erc-server-reconnect-attempts 5)
2215 (erc-server-reconnect-timeout 3)
2217 (defun erc-cmd-OPME ()
2218 "Request chanserv to op me."
2219 (erc-message "PRIVMSG"
2220 (format "chanserv op %s %s"
2221 (erc-default-target)
2222 (erc-current-nick)) nil
))
2223 (defun erc-cmd-DEOPME ()
2224 "Deop myself from current channel."
2225 (erc-cmd-DEOP (format "%s" (erc-current-nick))))
2226 (add-to-list 'erc-modules
'keep-place
)
2227 (add-to-list 'erc-modules
'notifications
)
2228 (add-to-list 'erc-modules
'spelling
)
2229 (add-to-list 'erc-modules
'scrolltoplace
)
2230 (erc-update-modules)
2232 (when (and (version<= "24.4" emacs-version
)
2233 (version< emacs-version
"27"))
2234 ;; fix erc-lurker bug
2235 ;; patch submitted: https://bugs.gnu.org/36843#10
2236 ;; TODO: remove when patch is merged and emacs 27 is released
2237 (defvar erc-message-parsed
)
2238 (defun erc-display-message (parsed type buffer msg
&rest args
)
2239 "Display MSG in BUFFER.
2241 ARGS, PARSED, and TYPE are used to format MSG sensibly.
2243 See also `erc-format-message' and `erc-display-line'."
2244 (let ((string (if (symbolp msg
)
2245 (apply #'erc-format-message msg args
)
2247 (erc-message-parsed parsed
))
2253 (mapc (lambda (type)
2255 (erc-display-message-highlight type string
)))
2259 (erc-display-message-highlight type string
))))
2261 (if (not (erc-response-p parsed
))
2262 (erc-display-line string buffer
)
2263 (unless (erc-hide-current-message-p parsed
)
2264 (erc-put-text-property 0 (length string
) 'erc-parsed parsed string
)
2265 (erc-put-text-property 0 (length string
) 'rear-sticky t string
)
2266 (when (erc-response.tags parsed
)
2267 (erc-put-text-property 0 (length string
) 'tags
(erc-response.tags parsed
)
2269 (erc-display-line string buffer
)))))
2271 (defun erc-lurker-update-status (_message)
2272 "Update `erc-lurker-state' if necessary.
2274 This function is called from `erc-insert-pre-hook'. If the
2275 current message is a PRIVMSG, update `erc-lurker-state' to
2276 reflect the fact that its sender has issued a PRIVMSG at the
2277 current time. Otherwise, take no action.
2279 This function depends on the fact that `erc-display-message'
2280 lexically binds `erc-message-parsed', which is used to check if
2281 the current message is a PRIVMSG and to determine its sender.
2282 See also `erc-lurker-trim-nicks' and `erc-lurker-ignore-chars'.
2284 In order to limit memory consumption, this function also calls
2285 `erc-lurker-cleanup' once every `erc-lurker-cleanup-interval'
2286 updates of `erc-lurker-state'."
2287 (when (and (boundp 'erc-message-parsed
)
2288 (erc-response-p erc-message-parsed
))
2289 (let* ((command (erc-response.command erc-message-parsed
))
2291 (erc-lurker-maybe-trim
2292 (car (erc-parse-user (erc-response.sender erc-message-parsed
)))))
2294 (erc-canonicalize-server-name erc-server-announced-name
)))
2295 (when (equal command
"PRIVMSG")
2296 (when (>= (cl-incf erc-lurker-cleanup-count
)
2297 erc-lurker-cleanup-interval
)
2298 (setq erc-lurker-cleanup-count
0)
2299 (erc-lurker-cleanup))
2300 (unless (gethash server erc-lurker-state
)
2301 (puthash server
(make-hash-table :test
'equal
) erc-lurker-state
))
2302 (puthash sender
(current-time)
2303 (gethash server erc-lurker-state
))))))))
2305 (use-feature erc-fill
2308 (erc-fill-column 77)
2309 (erc-fill-function 'erc-fill-static
)
2310 (erc-fill-static-center 18))
2312 (use-feature erc-pcomplete
2315 (erc-pcomplete-nick-postfix ","))
2317 (use-feature erc-track
2319 :bind
(("C-c a e t d" . erc-track-disable
)
2320 ("C-c a e t e" . erc-track-enable
))
2322 (erc-track-enable-keybindings nil
)
2323 (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT"
2324 "324" "329" "332" "333" "353" "477"))
2325 (erc-track-priority-faces-only 'all
)
2326 (erc-track-shorten-function nil
))
2328 (use-package erc-hl-nicks
2331 (use-package erc-scrolltoplace
2335 :straight
(:host nil
:repo
"https://git.shemshak.org/amin/znc.el")
2336 :bind
(("C-c a e e" . znc-erc
)
2337 ("C-c a e a" . znc-all
))
2339 (let ((pwd (let ((auth (auth-source-search :host
"znca")))
2341 ((null auth
) (error "Couldn't find znca's authinfo"))
2342 (t (funcall (plist-get (car auth
) :secret
)))))))
2344 `(("znc.shemshak.org" 1337 t
2345 ((freenode "amin/freenode" ,pwd
)))
2346 ("znc.shemshak.org" 1337 t
2347 ((moznet "amin/moznet" ,pwd
)))
2348 ("znc.shemshak.org" 1337 t
2349 ((oftc "amin/oftc" ,pwd
)))))))
2352 ;;; Post initialization
2354 (message "Loading %s...done (%.3fs)" user-init-file
2355 (float-time (time-subtract (current-time)
2356 b
/before-user-init-time
)))
2358 ;;; init.el ends here