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 ;; GNU Emacs configuration of Amin Bandali, computer scientist,
21 ;; Free Software activist, and GNU maintainer & webmaster. Packages
22 ;; are installed through using Borg for a fully reproducible setup.
24 ;; Over the years, I've taken inspiration from configurations of many
25 ;; great people. Some that I can remember off the top of my head are:
27 ;; - https://github.com/dieggsy/dotfiles
28 ;; - https://github.com/dakra/dmacs
29 ;; - http://pages.sachachua.com/.emacs.d/Sacha.html
30 ;; - https://github.com/dakrone/eos
31 ;; - http://doc.rix.si/cce/cce.html
32 ;; - https://github.com/jwiegley/dot-emacs
33 ;; - https://github.com/wasamasa/dotemacs
34 ;; - https://github.com/hlissner/doom-emacs
38 ;;; Emacs initialization
40 (defvar b
/before-user-init-time
(current-time)
41 "Value of `current-time' when Emacs begins loading `user-init-file'.")
42 (defvar b
/emacs-initialized nil
43 "Whether Emacs has been initialized.")
44 (defvar b
/exwm-p
(string= (system-name) "chaman")
45 "Whether or not we will be using `exwm'.")
47 (when (not (bound-and-true-p b
/emacs-initialized
))
48 (message "Loading Emacs...done (%.3fs)"
49 (float-time (time-subtract b
/before-user-init-time
52 ;; temporarily increase `gc-cons-threshhold' and `gc-cons-percentage'
53 ;; during startup to reduce garbage collection frequency. clearing
54 ;; `file-name-handler-alist' seems to help reduce startup time too.
55 (defvar b
/gc-cons-threshold gc-cons-threshold
)
56 (defvar b
/gc-cons-percentage gc-cons-percentage
)
57 (defvar b
/file-name-handler-alist file-name-handler-alist
)
58 (setq gc-cons-threshold
(* 30 1024 1024) ; 30 MiB
59 gc-cons-percentage
0.6
60 file-name-handler-alist nil
61 ;; sidesteps a bug when profiling with esup
62 esup-child-profile-require-level
0)
64 ;; set them back to their defaults once we're done initializing
66 "My post-initialize function, run after loading `user-init-file'."
67 (setq b
/emacs-initialized t
68 gc-cons-threshold b
/gc-cons-threshold
69 gc-cons-percentage b
/gc-cons-percentage
70 file-name-handler-alist b
/file-name-handler-alist
)
72 (with-eval-after-load 'exwm-workspace
79 "[%s]" (number-to-string
80 exwm-workspace-current-index
)))))))))
81 (add-hook 'after-init-hook
#'b
/post-init
)
83 ;; increase number of lines kept in *Messages* log
84 (setq message-log-max
20000)
86 ;; optionally, uncomment to supress some byte-compiler warnings
87 ;; (see C-h v byte-compile-warnings RET for more info)
88 ;; (setq byte-compile-warnings
89 ;; '(not free-vars unresolved noruntime lexical make-local))
94 (setq user-full-name
"Amin Bandali"
95 user-mail-address
"bandali@gnu.org")
100 ;; useful for commenting out multiple sexps at a time
101 (defmacro comment
(&rest _
)
102 "Comment out one or more s-expressions."
103 (declare (indent defun
))
107 ;;; Package management
110 (add-to-list 'load-path
111 (expand-file-name "lib/borg" user-emacs-directory
))
114 (setq borg-rewrite-urls-alist
115 '(("git@github.com:" .
"https://github.com/")
116 ("git@gitlab.com:" .
"https://gitlab.com/"))))
119 (if nil
; set to t when need to debug init
121 (setq use-package-verbose t
122 use-package-expand-minimally nil
123 use-package-compute-statistics t
125 (require 'use-package
))
126 (setq use-package-verbose nil
127 use-package-expand-minimally t
))
129 (setq use-package-always-defer t
)
135 ;; keep ~/.emacs.d clean
136 (use-package no-littering
139 (defalias 'b
/etc
'no-littering-expand-etc-file-name
)
140 (defalias 'b
/var
'no-littering-expand-var-file-name
))
142 (use-package auto-compile
145 (auto-compile-on-load-mode)
146 (auto-compile-on-save-mode)
147 (setq auto-compile-display-buffer nil
)
148 (setq auto-compile-mode-line-counter t
)
149 (setq auto-compile-source-recreate-deletes-dest t
)
150 (setq auto-compile-toggle-deletes-nonlib-dest t
)
151 (setq auto-compile-update-autoloads t
))
153 ;; separate custom file (don't want it mixing with init.el)
157 (setq custom-file
(b/etc
"custom.el"))
158 (when (file-exists-p custom-file
)
160 ;; while at it, treat themes as safe
161 (setf custom-safe-themes t
)
162 ;; only one custom theme at a time
164 (defadvice load-theme
(before clear-previous-themes activate
)
165 "Clear existing theme settings instead of layering them"
166 (mapc #'disable-theme custom-enabled-themes
))))
168 ;; load the secrets file if it exists, otherwise show a warning
171 (load (b/etc
"secrets"))))
173 ;; start up emacs server. see
174 ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server
178 (declare-function server-edit
"server")
179 (bind-key "C-c F D" 'server-edit
)
180 (declare-function server-running-p
"server")
181 (or (server-running-p) (server-mode)))
186 (defmacro b
/setq-every
(value &rest vars
)
187 "Set all the variables from VARS to value VALUE."
188 (declare (indent defun
) (debug t
))
189 `(progn ,@(mapcar (lambda (x) (list 'setq x value
)) vars
)))
191 (defun b/start-process
(program &rest args
)
192 "Same as `start-process', but doesn't bother about name and buffer."
193 (let ((process-name (concat program
"_process"))
194 (buffer-name (generate-new-buffer-name
195 (concat program
"_output"))))
196 (apply #'start-process
197 process-name buffer-name program args
)))
199 (defun b/dired-start-process
(program &optional args
)
200 "Open current file with a PROGRAM."
201 ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can
202 ;; be nil, so remove it).
203 (declare-function dired-get-file-for-visit
"dired")
204 (apply #'b
/start-process
206 (remove nil
(list args
(dired-get-file-for-visit)))))
208 (defun b/add-elisp-section
()
212 (insert "\n\f\n;;; "))
214 ;; (defvar b/fill-column 47
215 ;; "My custom `fill-column'.")
217 (defconst b
/asterism
"* * *")
219 (defun b/insert-asterism
()
220 "Insert a centred asterism."
225 (make-string (floor (/ (- fill-column
(length b
/asterism
)) 2))
230 (defun b/no-mouse-autoselect-window
()
231 "Conveniently disable `focus-follows-mouse'.
232 For disabling the behaviour for certain buffers and/or modes."
233 (make-local-variable 'mouse-autoselect-window
)
234 (setq mouse-autoselect-window nil
))
236 (defun b/kill-current-buffer
()
237 "Kill the current buffer."
238 ;; also see https://redd.it/64xb3q
240 (kill-buffer (current-buffer)))
245 ;;;; C-level customizations
249 enable-recursive-minibuffers t
250 resize-mini-windows t
251 ;; more useful frame titles
252 frame-title-format
'("" invocation-name
" - "
254 (if (buffer-file-name)
255 (abbreviate-file-name (buffer-file-name))
257 ;; i don't feel like jumping out of my chair every now and again; so
258 ;; don't BEEP! at me, emacs
259 ring-bell-function
'ignore
262 ;; scroll-conservatively 10000
264 scroll-conservatively
10
265 scroll-preserve-screen-position
1
266 ;; focus follows mouse
267 mouse-autoselect-window t
)
270 ;; always use space for indentation
278 (dolist (ft (fontset-list))
282 (font-spec :name
"Source Code Pro" :size
14))
286 (font-spec :name
"DejaVu Sans Mono")
293 ;; :name "Symbola monospacified for DejaVu Sans Mono")
299 ;; (font-spec :name "DejaVu Sans Mono")
305 (font-spec :name
"DejaVu Sans Mono" :size
14)
309 ;;;; Elisp-level customizations
315 ;; don't need to see the startup echo area message
316 (advice-add #'display-startup-echo-area-message
:override
#'ignore
)
318 ;; i want *scratch* as my startup buffer
319 (initial-buffer-choice t
)
320 ;; i don't need the default hint
321 (initial-scratch-message nil
)
322 ;; use customizable text-mode as major mode for *scratch*
323 ;; (initial-major-mode 'text-mode)
324 ;; inhibit buffer list when more than 2 files are loaded
325 (inhibit-startup-buffer-menu t
)
326 ;; don't need to see the startup screen or echo area message
327 (inhibit-startup-screen t
)
328 (inhibit-startup-echo-area-message user-login-name
))
334 ;; backups (C-h v make-backup-files RET)
335 (backup-by-copying t
)
337 (delete-old-versions t
)
340 (auto-save-file-name-transforms
341 `((".*" ,(b/var
"auto-save/") t
)))
343 ;; insert newline at the end of files
344 (require-final-newline t
)
346 ;; open read-only file buffers in view-mode
347 ;; (enables niceties like `q' for quit)
350 ;; disable disabled commands
351 (setq disabled-command-function nil
)
353 ;; lazy-person-friendly yes/no prompts
354 (defalias 'yes-or-no-p
#'y-or-n-p
)
356 ;; enable automatic reloading of changed buffers and files
357 (use-package autorevert
360 (global-auto-revert-mode 1)
362 (auto-revert-verbose nil
)
363 (global-auto-revert-non-file-buffers nil
))
365 ;; time and battery in mode-line
371 (display-time-default-load-average nil
)
372 (display-time-format " %a %b %-e %-l:%M%P")
373 (display-time-mail-icon '(image :type xpm
:file
"gnus/gnus-pointer.xpm" :ascent center
))
374 (display-time-use-mail-icon t
))
379 (display-battery-mode)
381 (battery-mode-line-format "%p%% %t"))
387 ;; (fringe-mode '(3 . 1))
393 ;; enable winner-mode (C-h f winner-mode RET)
398 ;; don't display *compilation* buffer on success. based on
399 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
400 ;; instead of the now obsolete `flet'.
401 (defun b/compilation-finish-function
(buffer outstr
)
402 (unless (string-match "finished" outstr
)
403 (switch-to-buffer-other-window buffer
))
406 (setq compilation-finish-functions
#'b
/compilation-finish-function
)
410 (defadvice compilation-start
411 (around inhibit-display
412 (command &optional mode name-function highlight-regexp
))
413 (if (not (string-match "^\\(find\\|grep\\)" command
))
414 (cl-letf (((symbol-function 'display-buffer
) #'ignore
))
415 (save-window-excursion ad-do-it
))
417 (ad-activate 'compilation-start
))
421 ;; allow scrolling in Isearch
422 (isearch-allow-scroll t
)
423 ;; search for non-ASCII characters: i’d like non-ASCII characters such
424 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
425 ;; counterpart. shoutout to
426 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
427 (search-default-mode #'char-fold-to-regexp
))
429 ;; uncomment to extend the above behaviour to query-replace
433 (replace-char-fold t
)))
436 :bind
("C-x v C-=" . vc-ediff
))
441 (vc-git-print-log-follow t
))
444 :config
(add-hook 'ediff-after-quit-hook-internal
'winner-undo
)
445 :custom
((ediff-window-setup-function 'ediff-setup-windows-plain
)
446 (ediff-split-window-function 'split-window-horizontally
)))
448 (use-package face-remap
450 ;; gentler font resizing
451 (text-scale-mode-step 1.05))
456 (setq mouse-wheel-scroll-amount
'(1 ((shift) .
1)) ; one line at a time
457 mouse-wheel-progressive-speed nil
; don't accelerate scrolling
458 mouse-wheel-follow-mouse t
)) ; scroll window under mouse
460 (use-package pixel-scroll
462 :config
(pixel-scroll-mode 1))
464 (use-package epg-config
466 ;; ask for GPG passphrase in minibuffer
467 ;; this will fail if gpg>=2.1 is not available
468 (setq epg-pinentry-mode
'loopback
)
470 (epg-gpg-program (executable-find "gpg")))
475 (use-package pinentry
478 :after
(epa epg server
)
480 ;; workaround for systemd-based distros:
481 ;; (setq pinentry--socket-dir server-socket-dir)
484 (use-package auth-source
486 (auth-sources '("~/.authinfo.gpg"))
487 (authinfo-hidden (regexp-opt '("password" "client-secret" "token"))))
495 ("C-c e b" . eval-buffer
)
496 ("C-c e e" . eval-last-sexp
)
497 ("C-c e p" . pp-macroexpand-last-sexp
)
498 ("C-c e r" . eval-region
)
500 ("C-c e i" . emacs-init-time
)
501 ("C-c e u" . emacs-uptime
)
502 ("C-c e v" . emacs-version
)
504 ("C-c f ." . find-file
)
505 ("C-c f d" . find-name-dired
)
506 ("C-c f l" . find-library
)
508 ("C-c F m" . make-frame-command
)
509 ("C-c F d" . delete-frame
)
511 ("C-S-h C" . describe-char
)
512 ("C-S-h F" . describe-face
)
514 ("C-c x" . execute-extended-command
)
516 ("C-x k" . b
/kill-current-buffer
)
517 ("C-x K" . kill-buffer
)
518 ("C-x s" . save-buffer
)
519 ("C-x S" . save-some-buffers
)
521 :map emacs-lisp-mode-map
522 ("<C-return>" . b
/add-elisp-section
))
524 (when (display-graphic-p)
525 (unbind-key "C-z" global-map
))
528 ;; for back and forward mouse keys
529 ("<XF86Back>" . previous-buffer
)
530 ("<mouse-8>" . previous-buffer
)
531 ;; ("<drag-mouse-8>" . previous-buffer)
532 ("<XF86Forward>" . next-buffer
)
533 ("<mouse-9>" . next-buffer
)
534 ;; ("<drag-mouse-9>" . next-buffer)
535 ;; ("<drag-mouse-2>" . kill-this-buffer)
536 ;; ("<drag-mouse-3>" . switch-to-buffer)
540 ;;; Essential packages
545 (convert-standard-filename "lisp") user-emacs-directory
))
548 (require 'bandali-exwm
))
550 (require 'bandali-org
)
552 ;; *the* right way to do git
554 :bind
(("C-x g" . magit-status
)
555 ("C-c g g" . magit-status
)
556 ("C-c g b" . magit-blame-addition
)
557 ("C-c g l" . magit-log-buffer-file
))
559 (declare-function magit-add-section-hook
"magit-section"
560 (hook function
&optional at append local
))
561 (magit-add-section-hook 'magit-status-sections-hook
562 'magit-insert-modules
563 'magit-insert-stashes
565 ;; (magit-add-section-hook 'magit-status-sections-hook
566 ;; 'magit-insert-ignored-files
567 ;; 'magit-insert-untracked-files
569 (setq magit-repository-directories
'(("~/.emacs.d/" .
0)
571 (nconc magit-section-initial-visibility-alist
572 '(([unpulled status
] . show
)
573 ([unpushed status
] . show
)))
574 (declare-function magit-display-buffer-fullframe-status-v1
"magit-mode" (buffer))
576 (magit-diff-refine-hunk t
)
577 (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1
)
578 ;; (magit-completing-read-function 'magit-ido-completing-read)
579 :custom-face
(magit-diff-file-heading ((t (:weight normal
)))))
581 ;; recently opened files
585 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
589 (recentf-max-saved-items 2000))
591 ;; needed for history for counsel
597 ;; (require 'bandali-ido)
598 (require 'bandali-ivy
)
600 (require 'bandali-eshell
)
602 (require 'bandali-ibuffer
)
606 :hook
(prog-mode . outline-minor-mode
)
609 outline-minor-mode-map
610 ("<s-tab>" . outline-toggle-children
)
611 ("M-p" . outline-previous-visible-heading
)
612 ("M-n" . outline-next-visible-heading
)
613 :prefix-map b
/outline-prefix-map
615 ("TAB" . outline-toggle-children
)
616 ("a" . outline-hide-body
)
617 ("H" . outline-hide-body
)
618 ("S" . outline-show-all
)
619 ("h" . outline-hide-subtree
)
620 ("s" . outline-show-subtree
)))
623 :custom
(ls-lisp-dirs-first t
))
625 (require 'bandali-dired
)
629 (temp-buffer-resize-mode)
630 (setq help-window-select t
))
634 (add-to-list 'tramp-default-proxies-alist
'(nil "\\`root\\'" "/ssh:%h:"))
635 (add-to-list 'tramp-default-proxies-alist
'("localhost" nil nil
))
636 (add-to-list 'tramp-default-proxies-alist
637 (list (regexp-quote (system-name)) nil nil
)))
639 (use-package doc-view
640 :bind
(:map doc-view-mode-map
641 ("M-RET" . image-previous-line
)))
643 (require 'bandali-gnus
)
645 (use-package sendmail
647 (setq sendmail-program
(executable-find "msmtp")
648 ;; message-sendmail-extra-arguments '("-v" "-d")
649 mail-specify-envelope-from t
650 mail-envelope-from
'header
))
652 (require 'bandali-message
)
657 ;; highlight uncommitted changes in the left fringe
661 (setq diff-hl-draw-borders nil
)
662 (global-diff-hl-mode)
663 :hook
(magit-post-refresh . diff-hl-magit-post-refresh
))
665 ;; display Lisp objects at point in the echo area
667 :when
(version< "25" emacs-version
)
668 :config
(global-eldoc-mode))
670 ;; highlight matching parens
673 :config
(show-paren-mode))
675 (use-package elec-pair
677 :config
(electric-pair-mode))
680 :config
(column-number-mode)
682 ;; Save what I copy into clipboard from other applications into Emacs'
683 ;; kill-ring, which would allow me to still be able to easily access
684 ;; it in case I kill (cut or copy) something else inside Emacs before
685 ;; yanking (pasting) what I'd originally intended to.
686 (save-interprogram-paste-before-kill t
))
688 ;; save minibuffer history
689 (use-package savehist
693 (add-to-list 'savehist-additional-variables
'kill-ring
))
695 ;; automatically save place in files
696 (use-package saveplace
697 :when
(version< "25" emacs-version
)
698 :config
(save-place-mode))
700 (use-package prog-mode
701 :config
(global-prettify-symbols-mode)
702 (defun indicate-buffer-boundaries-left ()
703 (setq indicate-buffer-boundaries
'left
))
704 (add-hook 'prog-mode-hook
#'indicate-buffer-boundaries-left
))
706 (use-package text-mode
707 :bind
(:map text-mode-map
("C-*" . b
/insert-asterism
))
708 :hook
((text-mode . indicate-buffer-boundaries-left
)
709 (text-mode . flyspell-mode
)))
711 (use-package conf-mode
720 (:map company-active-map
721 ([tab] . company-complete-common-or-cycle)
722 ([escape] . company-abort)
723 ("C-p" . company-select-previous-or-abort)
724 ("C-n" . company-select-next-or-abort))
726 (company-minimum-prefix-length 1)
727 (company-selection-wrap-around t)
728 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
729 (company-dabbrev-downcase nil)
730 (company-dabbrev-ignore-case nil)
732 ;; (global-company-mode t)
735 (use-package flycheck
737 :hook (prog-mode . flycheck-mode)
739 (:map flycheck-mode-map
740 ("M-P" . flycheck-previous-error)
741 ("M-N" . flycheck-next-error))
743 ;; Use the load-path from running Emacs when checking elisp files
744 (setq flycheck-emacs-lisp-load-path 'inherit)
746 ;; Only flycheck when I actually save the buffer
747 (setq flycheck-check-syntax-automatically '(mode-enabled save))
748 :custom (flycheck-mode-line-prefix "flyc"))
750 (use-package flyspell)
752 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
756 ;; ’ can be part of a word
757 (setq ispell-local-dictionary-alist
758 `((nil "[[:alpha:]]" "[^[:alpha:]]"
759 "['\x2019]" nil ("-B") nil utf-8))
760 ispell-program-name (executable-find "hunspell"))
761 ;; don't send ’ to the subprocess
762 (defun endless/replace-apostrophe (args)
763 (cons (replace-regexp-in-string
766 (advice-add #'ispell-send-string :filter-args
767 #'endless/replace-apostrophe)
769 ;; convert ' back to ’ from the subprocess
770 (defun endless/replace-quote (args)
771 (if (not (derived-mode-p 'org-mode))
773 (cons (replace-regexp-in-string
776 (advice-add #'ispell-parse-output :filter-args
777 #'endless/replace-quote))
780 :hook (text-mode . abbrev-mode))
783 ;;; Programming modes
785 (use-package lisp-mode
787 (defun indent-spaces-mode ()
788 (setq indent-tabs-mode nil))
789 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
792 :hook (emacs-lisp-mode . reveal-mode))
794 (use-package elisp-mode)
796 ;; (use-package alloy-mode
797 ;; :straight (:host github :repo "dwwmmn/alloy-mode")
798 ;; :mode "\\.\\(als\\|dsh\\)\\'"
800 ;; (setq alloy-basic-offset 2)
801 ;; ;; (defun b/alloy-simple-indent (start end)
802 ;; ;; (interactive "r")
803 ;; ;; ;; (if (region-active-p)
804 ;; ;; ;; (indent-rigidly start end alloy-basic-offset)
806 ;; ;; ;; (indent-rigidly (line-beginning-position)
807 ;; ;; ;; (line-end-position)
808 ;; ;; ;; alloy-basic-offset)))
809 ;; ;; (indent-to (+ (current-column) alloy-basic-offset)))
810 ;; :bind (:map alloy-mode-map
811 ;; ("RET" . electric-newline-and-maybe-indent)
812 ;; ;; ("TAB" . b/alloy-simple-indent)
813 ;; ("TAB" . indent-for-tab-command))
814 ;; :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil))))
816 (eval-when-compile (defvar lean-mode-map))
817 (use-package lean-mode
819 :bind (:map lean-mode-map
820 ("S-SPC" . company-complete))
822 (require 'lean-input)
823 (setq default-input-method "Lean"
824 lean-input-tweak-all '(lean-input-compose
825 (lean-input-prepend "/")
826 (lean-input-nonempty))
827 lean-input-user-translations '(("/" "/")))
830 (use-package mhtml-mode)
832 (use-package sgml-mode
834 (setq sgml-basic-offset 0))
836 (use-package css-mode
838 (setq css-indent-offset 2))
840 (use-package emmet-mode
841 :after (:any mhtml-mode css-mode sgml-mode)
842 :bind* (("C-)" . emmet-next-edit-point)
843 ("C-(" . emmet-prev-edit-point))
845 (unbind-key "C-j" emmet-mode-keymap)
846 (setq emmet-move-cursor-between-quotes t)
847 :hook (css-mode html-mode sgml-mode))
851 (use-package geiser-guile
853 (setq geiser-guile-load-path "~/src/git/guix"))
860 (font-latex-fontify-sectioning 'color)))
867 (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit))))
869 (use-package tex-mode
872 (lambda (p) (string-match "^---?" (car p)))
873 tex--prettify-symbols-alist)
874 :hook ((tex-mode . auto-fill-mode)
875 (tex-mode . flyspell-mode)))
877 ;; (use-package george-mode
878 ;; :straight (:host nil :repo "https://git.shemshak.org/amin/george-mode")
879 ;; :mode "\\.grg\\'")
884 (add-to-list 'custom-theme-load-path
886 (convert-standard-filename "lisp") user-emacs-directory))
887 (load-theme 'tangomod t)
889 (use-package smart-mode-line
890 :commands (sml/apply-theme)
893 ;; thanks, but no thnaks; don't make fixed-width fills.
894 (defun sml/fill-for-buffer-identification () "")
895 (setq sml/theme 'tangomod)
897 (smart-mode-line-enable))
899 (use-package doom-modeline
902 :hook (after-init . doom-modeline-init)
904 (doom-modeline-buffer-file-name-style 'relative-to-project))
906 (use-package doom-themes)
912 (setq x-underline-at-descent-line t)
913 (let ((line (face-attribute 'mode-line :underline)))
914 (set-face-attribute 'mode-line nil :overline line)
915 (set-face-attribute 'mode-line-inactive nil :overline line)
916 (set-face-attribute 'mode-line-inactive nil :underline line)
917 (set-face-attribute 'mode-line nil :box nil)
918 (set-face-attribute 'mode-line-inactive nil :box nil)
919 (set-face-attribute 'mode-line-inactive nil :background "#e1e1e1")) ; d3d7cf
920 (moody-replace-mode-line-buffer-identification)
921 (moody-replace-vc-mode))
923 (use-package mini-modeline
926 :config (mini-modeline-mode))
928 (defvar b/org-mode-font-lock-keywords
929 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
930 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
931 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
932 (4 '(:foreground "#c5c8c6") t))) ; title
933 "For use with the `doom-tomorrow-night' theme.")
935 (defun b/lights-on ()
936 "Enable my favourite light theme."
938 (mapc #'disable-theme custom-enabled-themes)
939 (load-theme 'tangomod t)
940 (when (featurep 'smart-mode-line)
941 (sml/apply-theme 'tangomod))
942 (font-lock-remove-keywords
943 'org-mode b/org-mode-font-lock-keywords)
944 (when (featurep 'erc-hl-nicks)
945 (erc-hl-nicks-reset-face-table))
946 (when (featurep 'exwm-systemtray)
947 (exwm-systemtray--refresh)))
949 (defun b/lights-off ()
952 (mapc #'disable-theme custom-enabled-themes)
953 (load-theme 'doom-one t)
954 (when (featurep 'smart-mode-line)
955 (sml/apply-theme 'automatic))
956 (font-lock-add-keywords
957 'org-mode b/org-mode-font-lock-keywords t)
958 (when (featurep 'erc-hl-nicks)
959 (erc-hl-nicks-reset-face-table))
960 (when (featurep 'exwm-systemtray)
961 (exwm-systemtray--refresh)))
964 ("C-c t d" . b/lights-off)
965 ("C-c t l" . b/lights-on))
968 ;;; Emacs enhancements & auxiliary packages
971 :config (setq Man-width 80))
973 (use-package which-key
976 (which-key-add-key-based-replacements
977 ;; prefixes for global prefixes and minor modes
980 "C-x RET" "coding system"
982 "C-x @" "event modifiers"
983 "C-x a" "abbrev/expand"
984 "C-x r" "rectangle/register/bookmark"
986 "C-x v" "version control"
990 ;; prefixes for my personal bindings
992 "C-c a" "applications"
997 "C-c c" "compile-and-comments"
1003 "C-c m" "multiple-cursors"
1004 "C-c p" "projectile"
1005 "C-c p s" "projectile/search"
1006 "C-c p x" "projectile/execute"
1007 "C-c p 4" "projectile/other-window"
1013 ;; prefixes for major modes
1014 (which-key-add-major-mode-key-based-replacements 'message-mode
1015 "C-c f n" "footnote")
1016 (which-key-add-major-mode-key-based-replacements 'org-mode
1017 "C-c C-v" "org-babel")
1021 (which-key-add-column-padding 5)
1022 (which-key-max-description-length 32))
1024 (use-package crux ; results in Waiting for git... [2 times]
1026 :bind (("C-c d" . crux-duplicate-current-line-or-region)
1027 ("C-c M-d" . crux-duplicate-and-comment-current-line-or-region)
1028 ("C-c f C" . crux-copy-file-preserve-attributes)
1029 ("C-c f D" . crux-delete-file-and-buffer)
1030 ("C-c f R" . crux-rename-file-and-buffer)
1031 ("C-c j" . crux-top-join-line)
1032 ("C-S-j" . crux-top-join-line)))
1035 :bind (("C-a" . mwim-beginning-of-code-or-line)
1036 ("C-e" . mwim-end-of-code-or-line)
1037 ("<home>" . mwim-beginning-of-line-or-code)
1038 ("<end>" . mwim-end-of-line-or-code)))
1040 (use-package projectile
1043 :bind-keymap ("C-c p" . projectile-command-map)
1047 (defun b/projectile-mode-line-fun ()
1048 "Report project name and type in the modeline."
1049 (let ((project-name (projectile-project-name))
1050 (project-type (projectile-project-type)))
1052 projectile-mode-line-prefix
1054 (format ":%s" project-type)
1056 (setq projectile-mode-line-function 'b/projectile-mode-line-fun)
1058 (defun my-projectile-invalidate-cache (&rest _args)
1059 ;; ignore the args to `magit-checkout'
1060 (projectile-invalidate-cache nil))
1062 (eval-after-load 'magit-branch
1064 (advice-add 'magit-checkout
1065 :after #'my-projectile-invalidate-cache)
1066 (advice-add 'magit-branch-and-checkout
1067 :after #'my-projectile-invalidate-cache)))
1069 (projectile-completion-system 'ivy)
1070 (projectile-mode-line-prefix " proj"))
1072 (use-package helpful
1075 (("C-S-h c" . helpful-command)
1076 ("C-S-h f" . helpful-callable) ; helpful-function
1077 ("C-S-h v" . helpful-variable)
1078 ("C-S-h k" . helpful-key)
1079 ("C-S-h p" . helpful-at-point)))
1081 (use-package unkillable-scratch
1084 (unkillable-scratch 1)
1086 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1089 ;; | make pretty boxed quotes like this
1091 (use-package boxquote
1094 (:prefix-map b/boxquote-prefix-map
1096 ("b" . boxquote-buffer)
1097 ("B" . boxquote-insert-buffer)
1098 ("d" . boxquote-defun)
1099 ("F" . boxquote-insert-file)
1100 ("hf" . boxquote-describe-function)
1101 ("hk" . boxquote-describe-key)
1102 ("hv" . boxquote-describe-variable)
1103 ("hw" . boxquote-where-is)
1104 ("k" . boxquote-kill)
1105 ("p" . boxquote-paragraph)
1106 ("q" . boxquote-boxquote)
1107 ("r" . boxquote-region)
1108 ("s" . boxquote-shell-command)
1109 ("t" . boxquote-text)
1110 ("T" . boxquote-title)
1111 ("u" . boxquote-unbox)
1112 ("U" . boxquote-unbox-region)
1113 ("y" . boxquote-yank)
1114 ("M-q" . boxquote-fill-paragraph)
1115 ("M-w" . boxquote-kill-ring-save)))
1117 (use-package orgalist
1118 ;; breaks auto-fill-mode, showing this error:
1119 ;; orgalist--boundaries: Lisp nesting exceeds ‘max-lisp-eval-depth’
1122 :hook (message-mode . orgalist-mode))
1124 ;; highlight TODOs in buffers
1125 (use-package hl-todo
1128 (global-hl-todo-mode))
1130 (use-package multi-term
1133 :bind (("C-c a s m m" . multi-term)
1134 ("C-c a s m d" . multi-term-dedicated-toggle)
1135 ("C-c a s m p" . multi-term-prev)
1136 ("C-c a s m n" . multi-term-next)
1138 ("C-c C-j" . term-char-mode))
1140 (setq multi-term-program "screen"
1141 multi-term-program-switches (concat "-c"
1142 (getenv "XDG_CONFIG_HOME")
1144 ;; TODO: add separate bindings for connecting to existing
1145 ;; session vs. always creating a new one
1146 multi-term-dedicated-select-after-open-p t
1147 multi-term-dedicated-window-height 20
1148 multi-term-dedicated-max-window-height 30
1150 '(("C-c C-c" . term-interrupt-subjob)
1151 ("C-c C-e" . term-send-esc)
1152 ("C-c C-j" . term-line-mode)
1154 ;; ("C-y" . term-paste)
1155 ("C-y" . term-send-raw)
1156 ("M-f" . term-send-forward-word)
1157 ("M-b" . term-send-backward-word)
1158 ("M-p" . term-send-up)
1159 ("M-n" . term-send-down)
1160 ("M-j" . term-send-raw-meta)
1161 ("M-y" . term-send-raw-meta)
1162 ("M-/" . term-send-raw-meta)
1163 ("M-0" . term-send-raw-meta)
1164 ("M-1" . term-send-raw-meta)
1165 ("M-2" . term-send-raw-meta)
1166 ("M-3" . term-send-raw-meta)
1167 ("M-4" . term-send-raw-meta)
1168 ("M-5" . term-send-raw-meta)
1169 ("M-6" . term-send-raw-meta)
1170 ("M-7" . term-send-raw-meta)
1171 ("M-8" . term-send-raw-meta)
1172 ("M-9" . term-send-raw-meta)
1173 ("<C-backspace>" . term-send-backward-kill-word)
1174 ("<M-DEL>" . term-send-backward-kill-word)
1175 ("M-d" . term-send-delete-word)
1176 ("M-," . term-send-raw)
1177 ("M-." . comint-dynamic-complete))
1178 term-unbind-key-alist
1179 '("C-z" "C-x" "C-c" "C-h"
1183 (use-package page-break-lines
1186 (page-break-lines-max-width fill-column)
1188 (global-page-break-lines-mode))
1190 (use-package expand-region
1191 :bind ("C-=" . er/expand-region))
1193 (use-package multiple-cursors
1195 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
1196 (:prefix-map b/mc-prefix-map
1198 ("c" . mc/edit-lines)
1199 ("n" . mc/mark-next-like-this)
1200 ("p" . mc/mark-previous-like-this)
1201 ("a" . mc/mark-all-like-this))))
1203 (use-package yasnippet
1206 (defconst yas-verbosity-cur yas-verbosity)
1207 (setq yas-verbosity 2)
1208 (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
1210 (setq yas-verbosity yas-verbosity-cur)
1212 (defun b/yas--maybe-expand-key-filter (cmd)
1213 (when (and (yas--maybe-expand-key-filter cmd)
1214 (not (bound-and-true-p git-commit-mode)))
1216 (defconst b/yas-maybe-expand
1217 '(menu-item "" yas-expand :filter b/yas--maybe-expand-key-filter))
1218 (define-key yas-minor-mode-map
1219 (kbd "SPC") b/yas-maybe-expand)
1223 (use-package debbugs
1225 (("C-c D d" . debbugs-gnu)
1226 ("C-c D b" . debbugs-gnu-bugs)
1229 (interactive) ; bug-gnu-emacs
1230 (setq debbugs-gnu-current-suppress t)
1231 (debbugs-gnu debbugs-gnu-default-severities '("emacs"))))
1232 ("C-c D g" . ; bug-gnuzilla
1235 (setq debbugs-gnu-current-suppress t)
1236 (debbugs-gnu debbugs-gnu-default-severities '("gnuzilla"))))
1237 ("C-c D G b" . ; bug-guix
1240 (setq debbugs-gnu-current-suppress t)
1241 (debbugs-gnu debbugs-gnu-default-severities '("guix"))))
1242 ("C-c D G p" . ; guix-patches
1245 (setq debbugs-gnu-current-suppress t)
1246 (debbugs-gnu debbugs-gnu-default-severities '("guix-patches"))))))
1248 (use-package org-ref
1250 (b/setq-every '("~/usr/org/references.bib")
1251 reftex-default-bibliography
1252 org-ref-default-bibliography)
1254 org-ref-bibliography-notes "~/usr/org/notes.org"
1255 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1257 ;; (use-package fill-column-indicator)
1261 (("C-c w e" . (lambda ()
1263 (split-window-right)
1265 (erc-switch-to-buffer)))
1266 ("C-c w s l" . (lambda ()
1268 (split-window-right)
1270 ("C-c w s j" . (lambda ()
1272 (split-window-below)
1274 ("C-c w q" . quit-window))
1276 (split-width-threshold 150))
1278 (use-package windmove
1281 (("C-c w h" . windmove-left)
1282 ("C-c w j" . windmove-down)
1283 ("C-c w k" . windmove-up)
1284 ("C-c w l" . windmove-right)
1285 ("C-c w H" . windmove-swap-states-left)
1286 ("C-c w J" . windmove-swap-states-down)
1287 ("C-c w K" . windmove-swap-states-up)
1288 ("C-c w L" . windmove-swap-states-right)))
1292 :bind ("C-c a p" . pass)
1293 :hook (pass-mode . View-exit))
1295 (use-package pdf-tools
1297 :bind (:map pdf-view-mode-map
1298 ("<C-XF86Back>" . pdf-history-backward)
1299 ("<mouse-8>" . pdf-history-backward)
1300 ("<drag-mouse-8>" . pdf-history-backward)
1301 ("<C-XF86Forward>" . pdf-history-forward)
1302 ("<mouse-9>" . pdf-history-forward)
1303 ("<drag-mouse-9>" . pdf-history-forward)
1304 ("M-RET" . image-previous-line)
1305 ("C-s" . isearch-forward)
1306 ("s s" . isearch-forward))
1307 :config (pdf-tools-install nil t)
1308 :custom (pdf-view-resize-factor 1.05))
1310 (use-package org-pdftools
1312 :straight (:host github :repo "fuxialexander/org-pdftools")
1316 (with-eval-after-load 'org
1317 (require 'org-pdftools)))
1319 (use-package biblio)
1322 :hook (latex-mode . reftex-mode))
1324 (use-package reftex-cite
1326 :disabled ; enable to disable
1327 ; reftex-cite's default choice
1330 (defun reftex-get-bibkey-default ()
1331 "If the cursor is in a citation macro, return the word before the macro."
1332 (let* ((macro (reftex-what-macro 1)))
1334 (when (and macro (string-match "cite" (car macro)))
1335 (goto-char (cdr macro)))
1336 (reftex-this-word)))))
1338 (use-package minions
1340 :config (minions-mode))
1344 (dmenu-prompt-string "run: ")
1345 (dmenu-save-file (b/var "dmenu-items")))
1348 ;; TODO: fix build by properly building the eosd-pixbuf.c module
1349 ;; e.g. see https://github.com/raxod502/straight.el/issues/386
1351 :straight (:host github :repo "clarete/eosd")
1357 (use-package scpaste
1360 (setq scpaste-http-destination "https://p.bndl.org"
1361 scpaste-scp-destination "nix:/var/www/p.bndl.org"))
1364 :bind ("C-c a e w" . eww)
1366 (eww-download-directory (file-name-as-directory
1367 (getenv "XDG_DOWNLOAD_DIR"))))
1375 :bind (:map gnus-group-mode-map ("e" . ebdb))
1377 (setq ebdb-sources (b/var "ebdb"))
1378 (with-eval-after-load 'swiper
1379 (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t)))
1381 (use-package ebdb-com
1384 (use-package ebdb-complete
1387 ;; (setq ebdb-complete-mail 'capf)
1388 (ebdb-complete-enable))
1390 (use-package ebdb-message
1394 ;; (use-package company-ebdb
1396 ;; (defun company-ebdb--post-complete (_) nil))
1398 (use-package ebdb-gnus
1401 (ebdb-gnus-window-size 0.3))
1403 (use-package ebdb-mua
1406 :custom (ebdb-mua-pop-up t))
1408 ;; (use-package ebdb-message
1411 ;; (use-package ebdb-vcard
1414 (use-package message-x)
1417 (use-package message-x
1419 (message-x-completion-alist
1421 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address)
1424 (quote message-newgroups-header-regexp))
1425 message-newgroups-header-regexp message-newsgroups-header-regexp)
1426 . message-expand-group))))))
1429 (use-package gnus-harvest
1430 :commands gnus-harvest-install
1433 (if (featurep 'message-x)
1434 (gnus-harvest-install 'message-x)
1435 (gnus-harvest-install))))
1437 (use-package gnus-article-treat-patch
1442 ;; note: be sure to customize faces with `:foreground "white"' when
1443 ;; using a theme with a white/light background :)
1444 (setq ft/gnus-article-patch-conditions
1445 '("^@@ -[0-9]+,[0-9]+ \\+[0-9]+,[0-9]+ @@")))
1448 ;;; IRC (with ERC and ZNC)
1451 :bind (("C-c b b" . erc-switch-to-buffer)
1453 ("M-a" . erc-track-switch-buffer))
1455 (erc-join-buffer 'bury)
1456 (erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
1457 (erc-nick "bandali")
1459 (erc-rename-buffers t)
1460 (erc-server-reconnect-attempts 5)
1461 (erc-server-reconnect-timeout 3)
1463 (defun erc-cmd-OPME ()
1464 "Request chanserv to op me."
1465 (erc-message "PRIVMSG"
1466 (format "chanserv op %s %s"
1467 (erc-default-target)
1468 (erc-current-nick)) nil))
1469 (defun erc-cmd-DEOPME ()
1470 "Deop myself from current channel."
1471 (erc-cmd-DEOP (format "%s" (erc-current-nick))))
1472 (add-to-list 'erc-modules 'keep-place)
1473 (add-to-list 'erc-modules 'notifications)
1474 (add-to-list 'erc-modules 'smiley)
1475 (add-to-list 'erc-modules 'spelling)
1476 (add-to-list 'erc-modules 'scrolltoplace)
1477 (erc-update-modules))
1479 (use-package erc-fill
1482 (erc-fill-column 77)
1483 (erc-fill-function 'erc-fill-static)
1484 (erc-fill-static-center 18))
1486 (use-package erc-pcomplete
1489 (erc-pcomplete-nick-postfix ", "))
1491 (use-package erc-track
1493 :bind (("C-c a e t d" . erc-track-disable)
1494 ("C-c a e t e" . erc-track-enable))
1496 (erc-track-enable-keybindings nil)
1497 (erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT"
1498 "324" "329" "332" "333" "353" "477"))
1499 (erc-track-position-in-mode-line t)
1500 (erc-track-priority-faces-only 'all)
1501 (erc-track-shorten-function nil))
1503 (use-package erc-hl-nicks
1506 (use-package erc-scrolltoplace
1510 :bind (("C-c a e e" . znc-erc)
1511 ("C-c a e a" . znc-all))
1513 (let ((pwd (let ((auth (auth-source-search :host "znca")))
1515 ((null auth) (error "Couldn't find znca's authinfo"))
1516 (t (funcall (plist-get (car auth) :secret)))))))
1518 `(("znc.shemshak.org" 1337 t
1519 ((freenode "amin/freenode" ,pwd)))
1520 ("znc.shemshak.org" 1337 t
1521 ((oftc "amin/oftc" ,pwd)))))))
1524 ;;; Post initialization
1527 (message "Loading %s...done (%.3fs)" user-init-file
1528 (float-time (time-subtract (current-time)
1529 b/before-user-init-time)))
1531 ;;; init.el ends here