1 ;;; init.el --- bandali's emacs configuration -*- lexical-binding: t -*-
3 ;; Copyright (C) 2018-2020 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)))
242 (defun b/move-indentation-or-beginning-of-line
(arg)
243 "Move to the indentation or to the beginning of line."
246 ;; (back-to-indentation)
247 ;; (move-beginning-of-line arg))
249 (progn (back-to-indentation)
251 (move-beginning-of-line arg
)))
253 (defun b/join-line-top
()
254 "Like `join-line', but join next line to the current line."
258 (defun b/duplicate-line-or-region
(&optional n
)
259 "Duplicate the current line, or region (if active).
260 Make N (default: 1) copies of the current line or region."
262 (let ((u-r-p (use-region-p)) ; if region is active
267 (buffer-substring (region-beginning) (region-end))
268 (prog1 (thing-at-point 'line
)
272 (forward-line 1))))))
273 (dotimes (_ (abs n1
))
275 (let* ((beg (if u-r-p
277 (line-beginning-position)))
280 (line-end-position)))))))
285 ;;;; C-level customizations
289 enable-recursive-minibuffers t
290 resize-mini-windows t
291 ;; more useful frame titles
292 frame-title-format
'("" invocation-name
" - "
294 (if (buffer-file-name)
295 (abbreviate-file-name (buffer-file-name))
297 ;; i don't feel like jumping out of my chair every now and again; so
298 ;; don't BEEP! at me, emacs
299 ring-bell-function
'ignore
302 ;; scroll-conservatively 10000
304 scroll-conservatively
101
305 scroll-preserve-screen-position
1
306 ;; focus follows mouse
307 mouse-autoselect-window t
)
310 ;; always use space for indentation
318 (dolist (ft (fontset-list))
322 (font-spec :name
"Source Code Pro" :size
14))
326 (font-spec :name
"DejaVu Sans Mono")
333 ;; :name "Symbola monospacified for DejaVu Sans Mono")
339 ;; (font-spec :name "DejaVu Sans Mono")
345 (font-spec :name
"DejaVu Sans Mono" :size
14)
349 ;;;; Elisp-level customizations
355 ;; don't need to see the startup echo area message
356 (advice-add #'display-startup-echo-area-message
:override
#'ignore
)
358 ;; i want *scratch* as my startup buffer
359 (initial-buffer-choice t
)
360 ;; i don't need the default hint
361 (initial-scratch-message nil
)
362 ;; use customizable text-mode as major mode for *scratch*
363 ;; (initial-major-mode 'text-mode)
364 ;; inhibit buffer list when more than 2 files are loaded
365 (inhibit-startup-buffer-menu t
)
366 ;; don't need to see the startup screen or echo area message
367 (inhibit-startup-screen t
)
368 (inhibit-startup-echo-area-message user-login-name
))
374 ;; backups (C-h v make-backup-files RET)
375 (backup-by-copying t
)
377 (delete-old-versions t
)
380 (auto-save-file-name-transforms
381 `((".*" ,(b/var
"auto-save/") t
)))
383 ;; insert newline at the end of files
384 (require-final-newline t
)
386 ;; open read-only file buffers in view-mode
387 ;; (enables niceties like `q' for quit)
390 ;; disable disabled commands
391 (setq disabled-command-function nil
)
393 ;; lazy-person-friendly yes/no prompts
394 (defalias 'yes-or-no-p
#'y-or-n-p
)
396 ;; enable automatic reloading of changed buffers and files
397 (use-package autorevert
400 (global-auto-revert-mode 1)
402 (auto-revert-verbose nil
)
403 (global-auto-revert-non-file-buffers nil
))
405 ;; time and battery in mode-line
411 (display-time-default-load-average nil
)
412 (display-time-format " %a %b %-e %-l:%M%P")
413 (display-time-mail-icon '(image :type xpm
:file
"gnus/gnus-pointer.xpm" :ascent center
))
414 (display-time-use-mail-icon t
))
419 (display-battery-mode)
421 (battery-mode-line-format "%p%% %t"))
427 ;; (fringe-mode '(3 . 1))
433 ;; enable winner-mode (C-h f winner-mode RET)
438 ;; don't display *compilation* buffer on success. based on
439 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
440 ;; instead of the now obsolete `flet'.
441 (defun b/compilation-finish-function
(buffer outstr
)
442 (unless (string-match "finished" outstr
)
443 (switch-to-buffer-other-window buffer
))
446 (setq compilation-finish-functions
#'b
/compilation-finish-function
)
450 (defadvice compilation-start
451 (around inhibit-display
452 (command &optional mode name-function highlight-regexp
))
453 (if (not (string-match "^\\(find\\|grep\\)" command
))
454 (cl-letf (((symbol-function 'display-buffer
) #'ignore
))
455 (save-window-excursion ad-do-it
))
457 (ad-activate 'compilation-start
))
461 ;; allow scrolling in Isearch
462 (isearch-allow-scroll t
)
463 ;; search for non-ASCII characters: i’d like non-ASCII characters such
464 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
465 ;; counterpart. shoutout to
466 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
467 (search-default-mode #'char-fold-to-regexp
))
469 ;; uncomment to extend the above behaviour to query-replace
473 (replace-char-fold t
)))
476 :bind
("C-x v C-=" . vc-ediff
))
481 (vc-git-print-log-follow t
))
484 :config
(add-hook 'ediff-after-quit-hook-internal
'winner-undo
)
485 :custom
((ediff-window-setup-function 'ediff-setup-windows-plain
)
486 (ediff-split-window-function 'split-window-horizontally
)))
488 (use-package face-remap
490 ;; gentler font resizing
491 (text-scale-mode-step 1.05))
496 (setq mouse-wheel-scroll-amount
'(1 ((shift) .
1)) ; one line at a time
497 mouse-wheel-progressive-speed nil
; don't accelerate scrolling
498 mouse-wheel-follow-mouse t
)) ; scroll window under mouse
500 (use-package pixel-scroll
502 :config
(pixel-scroll-mode 1))
504 (use-package epg-config
506 ;; ask for GPG passphrase in minibuffer
507 ;; this will fail if gpg>=2.1 is not available
508 (setq epg-pinentry-mode
'loopback
)
510 (epg-gpg-program (executable-find "gpg")))
515 (use-package pinentry
518 :after
(epa epg server
)
520 ;; workaround for systemd-based distros:
521 ;; (setq pinentry--socket-dir server-socket-dir)
524 (use-package auth-source
526 (auth-sources '("~/.authinfo.gpg"))
527 (authinfo-hidden (regexp-opt '("password" "client-secret" "token"))))
533 ("C-a" . b
/move-indentation-or-beginning-of-line
)
535 ("C-c d" . b
/duplicate-line-or-region
)
537 ("C-c e b" . eval-buffer
)
538 ("C-c e e" . eval-last-sexp
)
539 ("C-c e p" . pp-macroexpand-last-sexp
)
540 ("C-c e r" . eval-region
)
542 ("C-c e i" . emacs-init-time
)
543 ("C-c e u" . emacs-uptime
)
544 ("C-c e v" . emacs-version
)
546 ("C-c f ." . find-file
)
547 ("C-c f d" . find-name-dired
)
548 ("C-c f l" . find-library
)
550 ("C-c F m" . make-frame-command
)
551 ("C-c F d" . delete-frame
)
553 ("C-S-h C" . describe-char
)
554 ("C-S-h F" . describe-face
)
556 ("C-S-j" . b
/join-line-top
)
558 ("C-c x" . execute-extended-command
)
560 ("C-x k" . b
/kill-current-buffer
)
561 ("C-x K" . kill-buffer
)
562 ("C-x s" . save-buffer
)
563 ("C-x S" . save-some-buffers
)
565 :map emacs-lisp-mode-map
566 ("<C-return>" . b
/add-elisp-section
))
568 (when (display-graphic-p)
569 (unbind-key "C-z" global-map
))
572 ;; for back and forward mouse keys
573 ("<XF86Back>" . previous-buffer
)
574 ("<mouse-8>" . previous-buffer
)
575 ;; ("<drag-mouse-8>" . previous-buffer)
576 ("<XF86Forward>" . next-buffer
)
577 ("<mouse-9>" . next-buffer
)
578 ;; ("<drag-mouse-9>" . next-buffer)
579 ;; ("<drag-mouse-2>" . kill-this-buffer)
580 ;; ("<drag-mouse-3>" . switch-to-buffer)
584 ;;; Essential packages
589 (convert-standard-filename "lisp") user-emacs-directory
))
592 (require 'bandali-exwm
))
594 (require 'bandali-org
)
596 ;; *the* right way to do git
598 :bind
(("C-x g" . magit-status
)
599 ("C-c g g" . magit-status
)
600 ("C-c g b" . magit-blame-addition
)
601 ("C-c g l" . magit-log-buffer-file
))
603 (declare-function magit-add-section-hook
"magit-section"
604 (hook function
&optional at append local
))
605 (magit-add-section-hook 'magit-status-sections-hook
606 'magit-insert-modules
607 'magit-insert-stashes
609 ;; (magit-add-section-hook 'magit-status-sections-hook
610 ;; 'magit-insert-ignored-files
611 ;; 'magit-insert-untracked-files
613 (setq magit-repository-directories
'(("~/.emacs.d/" .
0)
615 (nconc magit-section-initial-visibility-alist
616 '(([unpulled status
] . show
)
617 ([unpushed status
] . show
)))
618 (declare-function magit-display-buffer-fullframe-status-v1
"magit-mode" (buffer))
620 (magit-diff-refine-hunk t
)
621 (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1
)
622 ;; (magit-completing-read-function 'magit-ido-completing-read)
623 :custom-face
(magit-diff-file-heading ((t (:weight normal
)))))
625 ;; recently opened files
629 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
633 (recentf-max-saved-items 2000))
635 ;; needed for history for counsel
641 ;; (require 'bandali-ido)
642 (require 'bandali-ivy
)
644 (require 'bandali-eshell
)
646 (require 'bandali-ibuffer
)
650 :hook
(prog-mode . outline-minor-mode
)
653 outline-minor-mode-map
654 ("<s-tab>" . outline-toggle-children
)
655 ("M-p" . outline-previous-visible-heading
)
656 ("M-n" . outline-next-visible-heading
)
657 :prefix-map b
/outline-prefix-map
659 ("TAB" . outline-toggle-children
)
660 ("a" . outline-hide-body
)
661 ("H" . outline-hide-body
)
662 ("S" . outline-show-all
)
663 ("h" . outline-hide-subtree
)
664 ("s" . outline-show-subtree
)))
667 :custom
(ls-lisp-dirs-first t
))
669 (require 'bandali-dired
)
673 (temp-buffer-resize-mode)
674 (setq help-window-select t
))
678 (add-to-list 'tramp-default-proxies-alist
'(nil "\\`root\\'" "/ssh:%h:"))
679 (add-to-list 'tramp-default-proxies-alist
'("localhost" nil nil
))
680 (add-to-list 'tramp-default-proxies-alist
681 (list (regexp-quote (system-name)) nil nil
)))
683 (use-package doc-view
684 :bind
(:map doc-view-mode-map
685 ("M-RET" . image-previous-line
)))
687 ;; Email (with Gnus, message, and EBDB)
688 (require 'bandali-gnus
)
689 (use-package sendmail
691 (setq sendmail-program
(executable-find "msmtp")
692 ;; message-sendmail-extra-arguments '("-v" "-d")
693 mail-specify-envelope-from t
694 mail-envelope-from
'header
))
695 (require 'bandali-message
)
696 (require 'bandali-ebdb
)
698 ;; IRC (with ERC and ZNC)
699 (require 'bandali-erc
)
703 (setq scpaste-http-destination
"https://p.bndl.org"
704 scpaste-scp-destination
"p:~"))
709 ;; highlight uncommitted changes in the left fringe
713 (setq diff-hl-draw-borders nil
)
714 (global-diff-hl-mode)
716 ((magit-pre-refresh . diff-hl-magit-pre-refresh
)
717 (magit-post-refresh . diff-hl-magit-post-refresh
)))
719 ;; display Lisp objects at point in the echo area
721 :when
(version< "25" emacs-version
)
722 :config
(global-eldoc-mode))
724 ;; highlight matching parens
727 :config
(show-paren-mode))
729 (use-package elec-pair
731 :config
(electric-pair-mode))
734 :config
(column-number-mode)
736 ;; Save what I copy into clipboard from other applications into Emacs'
737 ;; kill-ring, which would allow me to still be able to easily access
738 ;; it in case I kill (cut or copy) something else inside Emacs before
739 ;; yanking (pasting) what I'd originally intended to.
740 (save-interprogram-paste-before-kill t
))
742 ;; save minibuffer history
743 (use-package savehist
747 (add-to-list 'savehist-additional-variables
'kill-ring
))
749 ;; automatically save place in files
750 (use-package saveplace
751 :when
(version< "25" emacs-version
)
752 :config
(save-place-mode))
754 (use-package prog-mode
755 :config
(global-prettify-symbols-mode)
756 (defun indicate-buffer-boundaries-left ()
757 (setq indicate-buffer-boundaries
'left
))
758 (add-hook 'prog-mode-hook
#'indicate-buffer-boundaries-left
))
760 (use-package text-mode
761 :bind
(:map text-mode-map
("C-*" . b
/insert-asterism
))
762 :hook
((text-mode . indicate-buffer-boundaries-left
)
763 (text-mode . flyspell-mode
)))
765 (use-package conf-mode
768 (use-package sh-script
769 :mode
("\\.bashrc$" . sh-mode
))
774 (:map company-active-map
775 ([tab] . company-complete-common-or-cycle)
776 ([escape] . company-abort)
777 ("C-p" . company-select-previous-or-abort)
778 ("C-n" . company-select-next-or-abort))
780 (company-minimum-prefix-length 1)
781 (company-selection-wrap-around t)
782 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
783 (company-dabbrev-downcase nil)
784 (company-dabbrev-ignore-case nil)
786 ;; (global-company-mode t)
789 (use-package flycheck
792 :hook (prog-mode . flycheck-mode)
794 (:map flycheck-mode-map
795 ("M-P" . flycheck-previous-error)
796 ("M-N" . flycheck-next-error))
798 ;; Use the load-path from running Emacs when checking elisp files
799 (setq flycheck-emacs-lisp-load-path 'inherit)
801 ;; Only flycheck when I actually save the buffer
802 (setq flycheck-check-syntax-automatically '(mode-enabled save))
803 :custom (flycheck-mode-line-prefix "flyc"))
805 ;; (use-package flyspell)
807 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
812 ;; ’ can be part of a word
813 (setq ispell-local-dictionary-alist
814 `((nil "[[:alpha:]]" "[^[:alpha:]]"
815 "['\x2019]" nil ("-B") nil utf-8))
816 ispell-program-name (executable-find "hunspell"))
817 ;; don't send ’ to the subprocess
818 (defun endless/replace-apostrophe (args)
819 (cons (replace-regexp-in-string
822 (advice-add #'ispell-send-string :filter-args
823 #'endless/replace-apostrophe)
825 ;; convert ' back to ’ from the subprocess
826 (defun endless/replace-quote (args)
827 (if (not (derived-mode-p 'org-mode))
829 (cons (replace-regexp-in-string
832 (advice-add #'ispell-parse-output :filter-args
833 #'endless/replace-quote))
836 :hook (text-mode . abbrev-mode))
839 ;;; Programming modes
841 (use-package lisp-mode
843 (defun indent-spaces-mode ()
844 (setq indent-tabs-mode nil))
845 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
847 (use-package alloy-mode
848 :mode "\\.\\(als\\|dsh\\)\\'"
850 (setq alloy-basic-offset 2)
851 ;; (defun b/alloy-simple-indent (start end)
853 ;; ;; (if (region-active-p)
854 ;; ;; (indent-rigidly start end alloy-basic-offset)
856 ;; ;; (indent-rigidly (line-beginning-position)
857 ;; ;; (line-end-position)
858 ;; ;; alloy-basic-offset)))
859 ;; (indent-to (+ (current-column) alloy-basic-offset)))
860 :bind (:map alloy-mode-map
861 ("RET" . electric-newline-and-maybe-indent)
862 ;; ("TAB" . b/alloy-simple-indent)
863 ("TAB" . indent-for-tab-command))
864 :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil))))
866 (use-package lean-mode
869 :init (eval-when-compile (defvar lean-mode-map))
870 :bind (:map lean-mode-map
871 ("S-SPC" . company-complete))
873 (require 'lean-input)
874 (setq default-input-method "Lean"
875 lean-input-tweak-all '(lean-input-compose
876 (lean-input-prepend "/")
877 (lean-input-nonempty))
878 lean-input-user-translations '(("/" "/")))
881 (use-package sgml-mode
883 (setq sgml-basic-offset 0))
885 (use-package css-mode
887 (setq css-indent-offset 2))
889 (use-package emmet-mode
890 :after (:any mhtml-mode css-mode sgml-mode)
891 :bind* (("C-)" . emmet-next-edit-point)
892 ("C-(" . emmet-prev-edit-point))
894 (unbind-key "C-j" emmet-mode-keymap)
895 (setq emmet-move-cursor-between-quotes t)
896 :hook (css-mode html-mode sgml-mode))
901 (use-package geiser-guile
904 (setq geiser-guile-load-path "~/src/git/guix"))
915 (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit))))
920 (font-latex-fontify-sectioning 'color))
922 (use-package tex-mode
925 (lambda (p) (string-match "^---?" (car p)))
926 tex--prettify-symbols-alist)
927 :hook ((tex-mode . auto-fill-mode)
928 (tex-mode . flyspell-mode)))
930 ;; (use-package george-mode
931 ;; :straight (:host nil :repo "https://git.shemshak.org/amin/george-mode")
932 ;; :mode "\\.grg\\'")
938 (add-to-list 'custom-theme-load-path
940 (convert-standard-filename "lisp") user-emacs-directory))
941 (load-theme 'tangomod t)
943 (use-package smart-mode-line
944 :commands (sml/apply-theme)
947 ;; thanks, but no thnaks; don't make fixed-width fills.
948 (defun sml/fill-for-buffer-identification () "")
949 (setq sml/theme 'tangomod)
951 (smart-mode-line-enable))
953 (use-package doom-modeline
956 :hook (after-init . doom-modeline-init)
958 (doom-modeline-buffer-file-name-style 'relative-to-project))
960 (use-package doom-themes)
966 (setq x-underline-at-descent-line t)
967 (let ((line (face-attribute 'mode-line :underline)))
968 (set-face-attribute 'mode-line nil :overline line)
969 (set-face-attribute 'mode-line-inactive nil :overline line)
970 (set-face-attribute 'mode-line-inactive nil :underline line)
971 (set-face-attribute 'mode-line nil :box nil)
972 (set-face-attribute 'mode-line-inactive nil :box nil)
973 (set-face-attribute 'mode-line-inactive nil :background "#e1e1e1")) ; d3d7cf
974 (moody-replace-mode-line-buffer-identification)
975 (moody-replace-vc-mode))
977 (use-package mini-modeline
980 :config (mini-modeline-mode))
982 (defvar b/org-mode-font-lock-keywords
983 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
984 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
985 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
986 (4 '(:foreground "#c5c8c6") t))) ; title
987 "For use with the `doom-tomorrow-night' theme.")
989 (defun b/lights-on ()
990 "Enable my favourite light theme."
992 (mapc #'disable-theme custom-enabled-themes)
993 (load-theme 'tangomod t)
994 (when (featurep 'smart-mode-line)
995 (sml/apply-theme 'tangomod))
996 (font-lock-remove-keywords
997 'org-mode b/org-mode-font-lock-keywords)
998 (when (featurep 'erc-hl-nicks)
999 (erc-hl-nicks-reset-face-table))
1000 (when (featurep 'exwm-systemtray)
1001 (exwm-systemtray--refresh)))
1003 (defun b/lights-off ()
1006 (mapc #'disable-theme custom-enabled-themes)
1007 (load-theme 'doom-one t)
1008 (when (featurep 'smart-mode-line)
1009 (sml/apply-theme 'automatic))
1010 (font-lock-add-keywords
1011 'org-mode b/org-mode-font-lock-keywords t)
1012 (when (featurep 'erc-hl-nicks)
1013 (erc-hl-nicks-reset-face-table))
1014 (when (featurep 'exwm-systemtray)
1015 (exwm-systemtray--refresh)))
1018 ("C-c t d" . b/lights-off)
1019 ("C-c t l" . b/lights-on))
1022 ;;; Emacs enhancements & auxiliary packages
1025 :config (setq Man-width 80))
1027 (use-package which-key
1030 (which-key-add-key-based-replacements
1031 ;; prefixes for global prefixes and minor modes
1034 "C-x RET" "coding system"
1036 "C-x @" "event modifiers"
1037 "C-x a" "abbrev/expand"
1038 "C-x r" "rectangle/register/bookmark"
1040 "C-x v" "version control"
1044 ;; prefixes for my personal bindings
1046 "C-c a" "applications"
1051 "C-c c" "compile-and-comments"
1057 "C-c m" "multiple-cursors"
1058 "C-c p" "projectile"
1059 "C-c p s" "projectile/search"
1060 "C-c p x" "projectile/execute"
1061 "C-c p 4" "projectile/other-window"
1067 ;; prefixes for major modes
1068 (which-key-add-major-mode-key-based-replacements 'message-mode
1069 "C-c f n" "footnote")
1070 (which-key-add-major-mode-key-based-replacements 'org-mode
1071 "C-c C-v" "org-babel")
1075 (which-key-add-column-padding 5)
1076 (which-key-max-description-length 32))
1078 (use-package crux ; results in Waiting for git... [2 times]
1080 :bind (("C-c d" . crux-duplicate-current-line-or-region)
1081 ("C-c M-d" . crux-duplicate-and-comment-current-line-or-region)
1082 ("C-c f C" . crux-copy-file-preserve-attributes)
1083 ("C-c f D" . crux-delete-file-and-buffer)
1084 ("C-c f R" . crux-rename-file-and-buffer)
1085 ("C-c j" . crux-top-join-line)
1086 ("C-S-j" . crux-top-join-line)))
1088 (use-package projectile
1091 :bind-keymap ("C-c p" . projectile-command-map)
1095 (defun b/projectile-mode-line-fun ()
1096 "Report project name and type in the modeline."
1097 (let ((project-name (projectile-project-name))
1098 (project-type (projectile-project-type)))
1100 projectile-mode-line-prefix
1102 (format ":%s" project-type)
1104 (setq projectile-mode-line-function 'b/projectile-mode-line-fun)
1106 (defun my-projectile-invalidate-cache (&rest _args)
1107 ;; ignore the args to `magit-checkout'
1108 (projectile-invalidate-cache nil))
1110 (eval-after-load 'magit-branch
1112 (advice-add 'magit-checkout
1113 :after #'my-projectile-invalidate-cache)
1114 (advice-add 'magit-branch-and-checkout
1115 :after #'my-projectile-invalidate-cache)))
1117 (projectile-completion-system 'ivy)
1118 (projectile-mode-line-prefix " proj"))
1120 (use-package helpful
1123 (("C-S-h c" . helpful-command)
1124 ("C-S-h f" . helpful-callable) ; helpful-function
1125 ("C-S-h v" . helpful-variable)
1126 ("C-S-h k" . helpful-key)
1127 ("C-S-h p" . helpful-at-point)))
1129 (use-package unkillable-scratch
1132 (unkillable-scratch 1)
1134 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1137 ;; | make pretty boxed quotes like this
1139 (use-package boxquote
1142 (:prefix-map b/boxquote-prefix-map
1144 ("b" . boxquote-buffer)
1145 ("B" . boxquote-insert-buffer)
1146 ("d" . boxquote-defun)
1147 ("F" . boxquote-insert-file)
1148 ("hf" . boxquote-describe-function)
1149 ("hk" . boxquote-describe-key)
1150 ("hv" . boxquote-describe-variable)
1151 ("hw" . boxquote-where-is)
1152 ("k" . boxquote-kill)
1153 ("p" . boxquote-paragraph)
1154 ("q" . boxquote-boxquote)
1155 ("r" . boxquote-region)
1156 ("s" . boxquote-shell-command)
1157 ("t" . boxquote-text)
1158 ("T" . boxquote-title)
1159 ("u" . boxquote-unbox)
1160 ("U" . boxquote-unbox-region)
1161 ("y" . boxquote-yank)
1162 ("M-q" . boxquote-fill-paragraph)
1163 ("M-w" . boxquote-kill-ring-save)))
1165 (use-package orgalist
1166 ;; breaks auto-fill-mode, showing this error:
1167 ;; orgalist--boundaries: Lisp nesting exceeds ‘max-lisp-eval-depth’
1170 :hook (message-mode . orgalist-mode))
1172 ;; highlight TODOs in buffers
1173 (use-package hl-todo
1176 (global-hl-todo-mode))
1178 (use-package multi-term
1181 :bind (("C-c a s m m" . multi-term)
1182 ("C-c a s m d" . multi-term-dedicated-toggle)
1183 ("C-c a s m p" . multi-term-prev)
1184 ("C-c a s m n" . multi-term-next)
1186 ("C-c C-j" . term-char-mode))
1188 (setq multi-term-program "screen"
1189 multi-term-program-switches (concat "-c"
1190 (getenv "XDG_CONFIG_HOME")
1192 ;; TODO: add separate bindings for connecting to existing
1193 ;; session vs. always creating a new one
1194 multi-term-dedicated-select-after-open-p t
1195 multi-term-dedicated-window-height 20
1196 multi-term-dedicated-max-window-height 30
1198 '(("C-c C-c" . term-interrupt-subjob)
1199 ("C-c C-e" . term-send-esc)
1200 ("C-c C-j" . term-line-mode)
1202 ;; ("C-y" . term-paste)
1203 ("C-y" . term-send-raw)
1204 ("M-f" . term-send-forward-word)
1205 ("M-b" . term-send-backward-word)
1206 ("M-p" . term-send-up)
1207 ("M-n" . term-send-down)
1208 ("M-j" . term-send-raw-meta)
1209 ("M-y" . term-send-raw-meta)
1210 ("M-/" . term-send-raw-meta)
1211 ("M-0" . term-send-raw-meta)
1212 ("M-1" . term-send-raw-meta)
1213 ("M-2" . term-send-raw-meta)
1214 ("M-3" . term-send-raw-meta)
1215 ("M-4" . term-send-raw-meta)
1216 ("M-5" . term-send-raw-meta)
1217 ("M-6" . term-send-raw-meta)
1218 ("M-7" . term-send-raw-meta)
1219 ("M-8" . term-send-raw-meta)
1220 ("M-9" . term-send-raw-meta)
1221 ("<C-backspace>" . term-send-backward-kill-word)
1222 ("<M-DEL>" . term-send-backward-kill-word)
1223 ("M-d" . term-send-delete-word)
1224 ("M-," . term-send-raw)
1225 ("M-." . comint-dynamic-complete))
1226 term-unbind-key-alist
1227 '("C-z" "C-x" "C-c" "C-h"
1231 (use-package page-break-lines
1234 (page-break-lines-max-width fill-column)
1236 (global-page-break-lines-mode))
1238 (use-package expand-region
1239 :bind ("C-=" . er/expand-region))
1241 (use-package multiple-cursors
1243 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
1244 (:prefix-map b/mc-prefix-map
1246 ("c" . mc/edit-lines)
1247 ("n" . mc/mark-next-like-this)
1248 ("p" . mc/mark-previous-like-this)
1249 ("a" . mc/mark-all-like-this))))
1251 (use-package yasnippet
1254 (defconst yas-verbosity-cur yas-verbosity)
1255 (setq yas-verbosity 2)
1256 (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets" t)
1258 (setq yas-verbosity yas-verbosity-cur)
1260 (defun b/yas--maybe-expand-key-filter (cmd)
1261 (when (and (yas--maybe-expand-key-filter cmd)
1262 (not (bound-and-true-p git-commit-mode)))
1264 (defconst b/yas-maybe-expand
1265 '(menu-item "" yas-expand :filter b/yas--maybe-expand-key-filter))
1266 (define-key yas-minor-mode-map
1267 (kbd "SPC") b/yas-maybe-expand)
1271 (use-package debbugs
1273 (("C-c D d" . debbugs-gnu)
1274 ("C-c D b" . debbugs-gnu-bugs)
1277 (interactive) ; bug-gnu-emacs
1278 (setq debbugs-gnu-current-suppress t)
1279 (debbugs-gnu debbugs-gnu-default-severities '("emacs"))))
1280 ("C-c D g" . ; bug-gnuzilla
1283 (setq debbugs-gnu-current-suppress t)
1284 (debbugs-gnu debbugs-gnu-default-severities '("gnuzilla"))))
1285 ("C-c D G b" . ; bug-guix
1288 (setq debbugs-gnu-current-suppress t)
1289 (debbugs-gnu debbugs-gnu-default-severities '("guix"))))
1290 ("C-c D G p" . ; guix-patches
1293 (setq debbugs-gnu-current-suppress t)
1294 (debbugs-gnu debbugs-gnu-default-severities '("guix-patches"))))))
1296 (use-package org-ref
1298 (b/setq-every '("~/usr/org/references.bib")
1299 reftex-default-bibliography
1300 org-ref-default-bibliography)
1302 org-ref-bibliography-notes "~/usr/org/notes.org"
1303 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1305 ;; (use-package fill-column-indicator)
1309 (("C-c w s l" . (lambda ()
1311 (split-window-right)
1313 ("C-c w s j" . (lambda ()
1315 (split-window-below)
1317 ("C-c w q" . quit-window))
1319 (split-width-threshold 150))
1321 (use-package windmove
1324 (("C-c w h" . windmove-left)
1325 ("C-c w j" . windmove-down)
1326 ("C-c w k" . windmove-up)
1327 ("C-c w l" . windmove-right)
1328 ("C-c w H" . windmove-swap-states-left)
1329 ("C-c w J" . windmove-swap-states-down)
1330 ("C-c w K" . windmove-swap-states-up)
1331 ("C-c w L" . windmove-swap-states-right)))
1335 :bind ("C-c a p" . pass)
1336 :hook (pass-mode . View-exit))
1338 (use-package pdf-tools
1340 :bind (:map pdf-view-mode-map
1341 ("<C-XF86Back>" . pdf-history-backward)
1342 ("<mouse-8>" . pdf-history-backward)
1343 ("<drag-mouse-8>" . pdf-history-backward)
1344 ("<C-XF86Forward>" . pdf-history-forward)
1345 ("<mouse-9>" . pdf-history-forward)
1346 ("<drag-mouse-9>" . pdf-history-forward)
1347 ("M-RET" . image-previous-line)
1348 ("C-s" . isearch-forward)
1349 ("s s" . isearch-forward))
1350 :config (pdf-tools-install nil t)
1351 :custom (pdf-view-resize-factor 1.05))
1353 (use-package org-pdftools
1355 :straight (:host github :repo "fuxialexander/org-pdftools")
1359 (with-eval-after-load 'org
1360 (require 'org-pdftools)))
1362 (use-package biblio)
1365 :hook (latex-mode . reftex-mode))
1367 (use-package reftex-cite
1369 :disabled ; enable to disable
1370 ; reftex-cite's default choice
1373 (defun reftex-get-bibkey-default ()
1374 "If the cursor is in a citation macro, return the word before the macro."
1375 (let* ((macro (reftex-what-macro 1)))
1377 (when (and macro (string-match "cite" (car macro)))
1378 (goto-char (cdr macro)))
1379 (reftex-this-word)))))
1381 (use-package minions
1383 :config (minions-mode))
1387 (dmenu-prompt-string "run: ")
1388 (dmenu-save-file (b/var "dmenu-items")))
1391 ;; TODO: fix build by properly building the eosd-pixbuf.c module
1392 ;; e.g. see https://github.com/raxod502/straight.el/issues/386
1394 :straight (:host github :repo "clarete/eosd")
1401 :bind ("C-c a e w" . eww)
1403 (eww-download-directory (file-name-as-directory
1404 (getenv "XDG_DOWNLOAD_DIR"))))
1407 ;;; Post initialization
1410 (message "Loading %s...done (%.3fs)" user-init-file
1411 (float-time (time-subtract (current-time)
1412 b/before-user-init-time)))
1414 ;;; init.el ends here