a5fdea45ccba4dc31874976faac9c30f4b2ed647
[~bandali/configs] / init.el
1 ;;; init.el --- bandali's emacs configuration -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2018-2020 Amin Bandali <bandali@gnu.org>
4
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.
9
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.
14
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/>.
17
18 ;;; Commentary:
19
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.
23
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:
26 ;;
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
35
36 ;;; Code:
37
38 ;;; Emacs initialization
39
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'.")
46
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
50 before-init-time))))
51
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)
63
64 ;; set them back to their defaults once we're done initializing
65 (defun b/post-init ()
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)
71 (when b/exwm-p
72 (with-eval-after-load 'exwm-workspace
73 (setq-default
74 mode-line-format
75 (append
76 mode-line-format
77 '((:eval
78 (format
79 "[%s]" (number-to-string
80 exwm-workspace-current-index)))))))))
81 (add-hook 'after-init-hook #'b/post-init)
82
83 ;; increase number of lines kept in *Messages* log
84 (setq message-log-max 20000)
85
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))
90
91 \f
92 ;;; whoami
93
94 (setq user-full-name "Amin Bandali"
95 user-mail-address "bandali@gnu.org")
96
97 \f
98 ;;; comment macro
99
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))
104 nil)
105
106 \f
107 ;;; Package management
108
109 (progn ; `borg'
110 (add-to-list 'load-path
111 (expand-file-name "lib/borg" user-emacs-directory))
112 (require 'borg)
113 (borg-initialize)
114 (setq borg-rewrite-urls-alist
115 '(("git@github.com:" . "https://github.com/")
116 ("git@gitlab.com:" . "https://gitlab.com/"))))
117
118 ;; use-package
119 (if nil ; set to t when need to debug init
120 (progn
121 (setq use-package-verbose t
122 use-package-expand-minimally nil
123 use-package-compute-statistics t
124 debug-on-error t)
125 (require 'use-package))
126 (setq use-package-verbose nil
127 use-package-expand-minimally t))
128
129 (setq use-package-always-defer t)
130 (require 'bind-key)
131
132 \f
133 ;;; Initial setup
134
135 ;; keep ~/.emacs.d clean
136 (use-package no-littering
137 :demand
138 :config
139 (defalias 'b/etc 'no-littering-expand-etc-file-name)
140 (defalias 'b/var 'no-littering-expand-var-file-name))
141
142 (use-package auto-compile
143 :demand
144 :config
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))
152
153 ;; separate custom file (don't want it mixing with init.el)
154 (use-package custom
155 :no-require
156 :config
157 (setq custom-file (b/etc "custom.el"))
158 (when (file-exists-p custom-file)
159 (load custom-file))
160 ;; while at it, treat themes as safe
161 (setf custom-safe-themes t)
162 ;; only one custom theme at a time
163 (comment
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))))
167
168 ;; load the secrets file if it exists, otherwise show a warning
169 (comment
170 (with-demoted-errors
171 (load (b/etc "secrets"))))
172
173 ;; start up emacs server. see
174 ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server
175 (use-package server
176 :defer 0.5
177 :config
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)))
182
183 \f
184 ;;; Useful utilities
185
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)))
190
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)))
198
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
205 program
206 (remove nil (list args (dired-get-file-for-visit)))))
207
208 (defun b/add-elisp-section ()
209 (interactive)
210 (insert "\n")
211 (forward-line -1)
212 (insert "\n\f\n;;; "))
213
214 ;; (defvar b/fill-column 47
215 ;; "My custom `fill-column'.")
216
217 (defconst b/asterism "* * *")
218
219 (defun b/insert-asterism ()
220 "Insert a centred asterism."
221 (interactive)
222 (insert
223 (concat
224 "\n\n"
225 (make-string (floor (/ (- fill-column (length b/asterism)) 2))
226 ?\s)
227 b/asterism
228 "\n\n")))
229
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))
235
236 (defun b/kill-current-buffer ()
237 "Kill the current buffer."
238 ;; also see https://redd.it/64xb3q
239 (interactive)
240 (kill-buffer (current-buffer)))
241
242 (defun b/move-indentation-or-beginning-of-line (arg)
243 "Move to the indentation or to the beginning of line."
244 (interactive "^p")
245 ;; (if (bolp)
246 ;; (back-to-indentation)
247 ;; (move-beginning-of-line arg))
248 (if (= (point)
249 (progn (back-to-indentation)
250 (point)))
251 (move-beginning-of-line arg)))
252
253 (defun b/join-line-top ()
254 "Like `join-line', but join next line to the current line."
255 (interactive)
256 (join-line 1))
257
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."
261 (interactive "*p")
262 (let ((u-r-p (use-region-p)) ; if region is active
263 (n1 (or n 1)))
264 (save-excursion
265 (let ((text
266 (if u-r-p
267 (buffer-substring (region-beginning) (region-end))
268 (prog1 (thing-at-point 'line)
269 (end-of-line)
270 (if (eobp)
271 (newline)
272 (forward-line 1))))))
273 (dotimes (_ (abs n1))
274 (insert text))))))
275
276 \f
277 ;;; Defaults
278
279 ;;;; C-level customizations
280
281 (setq
282 ;; minibuffer
283 enable-recursive-minibuffers t
284 resize-mini-windows t
285 ;; more useful frame titles
286 frame-title-format '("" invocation-name " - "
287 (:eval
288 (if (buffer-file-name)
289 (abbreviate-file-name (buffer-file-name))
290 "%b")))
291 ;; i don't feel like jumping out of my chair every now and again; so
292 ;; don't BEEP! at me, emacs
293 ring-bell-function 'ignore
294 ;; better scrolling
295 ;; scroll-margin 1
296 ;; scroll-conservatively 10000
297 scroll-step 1
298 scroll-conservatively 101
299 scroll-preserve-screen-position 1
300 ;; focus follows mouse
301 mouse-autoselect-window t)
302
303 (setq-default
304 ;; always use space for indentation
305 indent-tabs-mode nil
306 tab-width 4
307 ;; cursor shape
308 cursor-type t)
309
310 ;; unicode support
311 (comment
312 (dolist (ft (fontset-list))
313 (set-fontset-font
314 ft
315 'unicode
316 (font-spec :name "Source Code Pro" :size 14))
317 (set-fontset-font
318 ft
319 'unicode
320 (font-spec :name "DejaVu Sans Mono")
321 nil
322 'append)
323 ;; (set-fontset-font
324 ;; ft
325 ;; 'unicode
326 ;; (font-spec
327 ;; :name "Symbola monospacified for DejaVu Sans Mono")
328 ;; nil
329 ;; 'append)
330 ;; (set-fontset-font
331 ;; ft
332 ;; #x2115 ; ℕ
333 ;; (font-spec :name "DejaVu Sans Mono")
334 ;; nil
335 ;; 'append)
336 (set-fontset-font
337 ft
338 (cons ?Α ?ω)
339 (font-spec :name "DejaVu Sans Mono" :size 14)
340 nil
341 'prepend)))
342
343 ;;;; Elisp-level customizations
344
345 (use-package startup
346 :no-require
347 :demand
348 :config
349 ;; don't need to see the startup echo area message
350 (advice-add #'display-startup-echo-area-message :override #'ignore)
351 :custom
352 ;; i want *scratch* as my startup buffer
353 (initial-buffer-choice t)
354 ;; i don't need the default hint
355 (initial-scratch-message nil)
356 ;; use customizable text-mode as major mode for *scratch*
357 ;; (initial-major-mode 'text-mode)
358 ;; inhibit buffer list when more than 2 files are loaded
359 (inhibit-startup-buffer-menu t)
360 ;; don't need to see the startup screen or echo area message
361 (inhibit-startup-screen t)
362 (inhibit-startup-echo-area-message user-login-name))
363
364 (use-package files
365 :no-require
366 :demand
367 :custom
368 ;; backups (C-h v make-backup-files RET)
369 (backup-by-copying t)
370 (version-control t)
371 (delete-old-versions t)
372
373 ;; auto-save
374 (auto-save-file-name-transforms
375 `((".*" ,(b/var "auto-save/") t)))
376
377 ;; insert newline at the end of files
378 (require-final-newline t)
379
380 ;; open read-only file buffers in view-mode
381 ;; (enables niceties like `q' for quit)
382 (view-read-only t))
383
384 ;; disable disabled commands
385 (setq disabled-command-function nil)
386
387 ;; lazy-person-friendly yes/no prompts
388 (defalias 'yes-or-no-p #'y-or-n-p)
389
390 ;; enable automatic reloading of changed buffers and files
391 (use-package autorevert
392 :demand
393 :config
394 (global-auto-revert-mode 1)
395 :custom
396 (auto-revert-verbose nil)
397 (global-auto-revert-non-file-buffers nil))
398
399 ;; time and battery in mode-line
400 (use-package time
401 :demand
402 :config
403 (display-time-mode)
404 :custom
405 (display-time-default-load-average nil)
406 (display-time-format " %a %b %-e %-l:%M%P")
407 (display-time-mail-icon '(image :type xpm :file "gnus/gnus-pointer.xpm" :ascent center))
408 (display-time-use-mail-icon t))
409
410 (use-package battery
411 :demand
412 :config
413 (display-battery-mode)
414 :custom
415 (battery-mode-line-format "%p%% %t"))
416
417 (use-package fringe
418 :demand
419 :config
420 ;; smaller fringe
421 ;; (fringe-mode '(3 . 1))
422 (fringe-mode nil))
423
424 (use-package winner
425 :demand
426 :config
427 ;; enable winner-mode (C-h f winner-mode RET)
428 (winner-mode 1))
429
430 (use-package compile
431 :config
432 ;; don't display *compilation* buffer on success. based on
433 ;; https://stackoverflow.com/a/17788551, with changes to use `cl-letf'
434 ;; instead of the now obsolete `flet'.
435 (defun b/compilation-finish-function (buffer outstr)
436 (unless (string-match "finished" outstr)
437 (switch-to-buffer-other-window buffer))
438 t)
439
440 (setq compilation-finish-functions #'b/compilation-finish-function)
441
442 (require 'cl-macs)
443
444 (defadvice compilation-start
445 (around inhibit-display
446 (command &optional mode name-function highlight-regexp))
447 (if (not (string-match "^\\(find\\|grep\\)" command))
448 (cl-letf (((symbol-function 'display-buffer) #'ignore))
449 (save-window-excursion ad-do-it))
450 ad-do-it))
451 (ad-activate 'compilation-start))
452
453 (use-package isearch
454 :custom
455 ;; allow scrolling in Isearch
456 (isearch-allow-scroll t)
457 ;; search for non-ASCII characters: i’d like non-ASCII characters such
458 ;; as ‘’“”«»‹›áⓐ𝒶 to be selected when i search for their ASCII
459 ;; counterpart. shoutout to
460 ;; http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html
461 (search-default-mode #'char-fold-to-regexp))
462
463 ;; uncomment to extend the above behaviour to query-replace
464 (comment
465 (use-package replace
466 :custom
467 (replace-char-fold t)))
468
469 (use-package vc
470 :bind ("C-x v C-=" . vc-ediff))
471
472 (use-package vc-git
473 :after vc
474 :custom
475 (vc-git-print-log-follow t))
476
477 (use-package ediff
478 :config (add-hook 'ediff-after-quit-hook-internal 'winner-undo)
479 :custom ((ediff-window-setup-function 'ediff-setup-windows-plain)
480 (ediff-split-window-function 'split-window-horizontally)))
481
482 (use-package face-remap
483 :custom
484 ;; gentler font resizing
485 (text-scale-mode-step 1.05))
486
487 (use-package mwheel
488 :defer 0.4
489 :config
490 (setq mouse-wheel-scroll-amount '(1 ((shift) . 1)) ; one line at a time
491 mouse-wheel-progressive-speed nil ; don't accelerate scrolling
492 mouse-wheel-follow-mouse t)) ; scroll window under mouse
493
494 (use-package pixel-scroll
495 :defer 0.4
496 :config (pixel-scroll-mode 1))
497
498 (use-package epg-config
499 :config
500 ;; ask for GPG passphrase in minibuffer
501 ;; this will fail if gpg>=2.1 is not available
502 (setq epg-pinentry-mode 'loopback)
503 :custom
504 (epg-gpg-program (executable-find "gpg")))
505
506 (use-package epg
507 :after epg-config)
508
509 (use-package pinentry
510 :disabled
511 :demand
512 :after (epa epg server)
513 :config
514 ;; workaround for systemd-based distros:
515 ;; (setq pinentry--socket-dir server-socket-dir)
516 (pinentry-start))
517
518 (use-package auth-source
519 :custom
520 (auth-sources '("~/.authinfo.gpg"))
521 (authinfo-hidden (regexp-opt '("password" "client-secret" "token"))))
522
523 \f
524 ;;; General bindings
525
526 (bind-keys
527 ("C-a" . b/move-indentation-or-beginning-of-line)
528 ("C-c a i" . ielm)
529 ("C-c d" . b/duplicate-line-or-region)
530
531 ("C-c e b" . eval-buffer)
532 ("C-c e e" . eval-last-sexp)
533 ("C-c e p" . pp-macroexpand-last-sexp)
534 ("C-c e r" . eval-region)
535
536 ("C-c e i" . emacs-init-time)
537 ("C-c e u" . emacs-uptime)
538 ("C-c e v" . emacs-version)
539
540 ("C-c f ." . find-file)
541 ("C-c f d" . find-name-dired)
542 ("C-c f l" . find-library)
543
544 ("C-c F m" . make-frame-command)
545 ("C-c F d" . delete-frame)
546
547 ("C-S-h C" . describe-char)
548 ("C-S-h F" . describe-face)
549
550 ("C-S-j" . b/join-line-top)
551
552 ("C-c x" . execute-extended-command)
553
554 ("C-x k" . b/kill-current-buffer)
555 ("C-x K" . kill-buffer)
556 ("C-x s" . save-buffer)
557 ("C-x S" . save-some-buffers)
558
559 :map emacs-lisp-mode-map
560 ("<C-return>" . b/add-elisp-section))
561
562 (when (display-graphic-p)
563 (unbind-key "C-z" global-map))
564
565 (bind-keys
566 ;; for back and forward mouse keys
567 ("<XF86Back>" . previous-buffer)
568 ("<mouse-8>" . previous-buffer)
569 ;; ("<drag-mouse-8>" . previous-buffer)
570 ("<XF86Forward>" . next-buffer)
571 ("<mouse-9>" . next-buffer)
572 ;; ("<drag-mouse-9>" . next-buffer)
573 ;; ("<drag-mouse-2>" . kill-this-buffer)
574 ;; ("<drag-mouse-3>" . switch-to-buffer)
575 )
576
577 \f
578 ;;; Essential packages
579
580 (add-to-list
581 'load-path
582 (expand-file-name
583 (convert-standard-filename "lisp") user-emacs-directory))
584
585 (when b/exwm-p
586 (require 'bandali-exwm))
587
588 (require 'bandali-org)
589
590 (require 'bandali-theme)
591
592 ;; *the* right way to do git
593 (use-package magit
594 :bind (("C-x g" . magit-status)
595 ("C-c g g" . magit-status)
596 ("C-c g b" . magit-blame-addition)
597 ("C-c g l" . magit-log-buffer-file))
598 :config
599 (declare-function magit-add-section-hook "magit-section"
600 (hook function &optional at append local))
601 (magit-add-section-hook 'magit-status-sections-hook
602 'magit-insert-modules
603 'magit-insert-stashes
604 'append)
605 ;; (magit-add-section-hook 'magit-status-sections-hook
606 ;; 'magit-insert-ignored-files
607 ;; 'magit-insert-untracked-files
608 ;; 'append)
609 (setq magit-repository-directories '(("~/.emacs.d/" . 0)
610 ("~/src/git/" . 2)))
611 (nconc magit-section-initial-visibility-alist
612 '(([unpulled status] . show)
613 ([unpushed status] . show)))
614 (declare-function magit-display-buffer-fullframe-status-v1 "magit-mode" (buffer))
615 :custom
616 (magit-diff-refine-hunk t)
617 (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1)
618 ;; (magit-completing-read-function 'magit-ido-completing-read)
619 :custom-face (magit-diff-file-heading ((t (:weight normal)))))
620
621 ;; recently opened files
622 (use-package recentf
623 :defer 0.2
624 ;; :config
625 ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
626 :config
627 (recentf-mode)
628 :custom
629 (recentf-max-saved-items 2000))
630
631 ;; needed for history for counsel
632 (use-package amx
633 :defer 0.3
634 :config
635 (amx-mode))
636
637 ;; (require 'bandali-ido)
638 (require 'bandali-ivy)
639
640 (require 'bandali-eshell)
641 ;; (require 'bandali-multi-term)
642
643 (require 'bandali-ibuffer)
644
645 (use-package outline
646 :disabled
647 :hook (prog-mode . outline-minor-mode)
648 :bind
649 (:map
650 outline-minor-mode-map
651 ("<s-tab>" . outline-toggle-children)
652 ("M-p" . outline-previous-visible-heading)
653 ("M-n" . outline-next-visible-heading)
654 :prefix-map b/outline-prefix-map
655 :prefix "s-O"
656 ("TAB" . outline-toggle-children)
657 ("a" . outline-hide-body)
658 ("H" . outline-hide-body)
659 ("S" . outline-show-all)
660 ("h" . outline-hide-subtree)
661 ("s" . outline-show-subtree))
662 :config
663 (when (featurep 'which-key)
664 (which-key-add-key-based-replacements
665 "C-c @" "outline"
666 "s-O" "outline")))
667
668 (require 'bandali-dired)
669
670 (use-package help
671 :config
672 (temp-buffer-resize-mode)
673 (setq help-window-select t))
674
675 (use-package tramp
676 :config
677 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
678 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
679 (add-to-list 'tramp-default-proxies-alist
680 (list (regexp-quote (system-name)) nil nil)))
681
682 (use-package doc-view
683 :bind (:map doc-view-mode-map
684 ("M-RET" . image-previous-line)))
685
686 ;; Email (with Gnus, message, and EBDB)
687 (require 'bandali-gnus)
688 (use-package sendmail
689 :config
690 (setq sendmail-program (executable-find "msmtp")
691 ;; message-sendmail-extra-arguments '("-v" "-d")
692 mail-specify-envelope-from t
693 mail-envelope-from 'header))
694 (require 'bandali-message)
695 (require 'bandali-ebdb)
696
697 ;; IRC (with ERC and ZNC)
698 (require 'bandali-erc)
699
700 (use-package scpaste
701 :config
702 (setq scpaste-http-destination "https://p.bndl.org"
703 scpaste-scp-destination "p:~"))
704
705 \f
706 ;;; Editing
707
708 ;; highlight uncommitted changes in the left fringe
709 (use-package diff-hl
710 :defer 0.6
711 :config
712 (setq diff-hl-draw-borders nil)
713 (global-diff-hl-mode)
714 :hook
715 ((magit-pre-refresh . diff-hl-magit-pre-refresh)
716 (magit-post-refresh . diff-hl-magit-post-refresh)))
717
718 ;; display Lisp objects at point in the echo area
719 (use-package eldoc
720 :when (version< "25" emacs-version)
721 :config (global-eldoc-mode))
722
723 ;; highlight matching parens
724 (use-package paren
725 :demand
726 :config (show-paren-mode))
727
728 (use-package elec-pair
729 :demand
730 :config (electric-pair-mode))
731
732 (use-package simple
733 :config (column-number-mode)
734 :custom
735 ;; Save what I copy into clipboard from other applications into Emacs'
736 ;; kill-ring, which would allow me to still be able to easily access
737 ;; it in case I kill (cut or copy) something else inside Emacs before
738 ;; yanking (pasting) what I'd originally intended to.
739 (save-interprogram-paste-before-kill t))
740
741 ;; save minibuffer history
742 (use-package savehist
743 :demand
744 :config
745 (savehist-mode)
746 (add-to-list 'savehist-additional-variables 'kill-ring))
747
748 ;; automatically save place in files
749 (use-package saveplace
750 :when (version< "25" emacs-version)
751 :config (save-place-mode))
752
753 (use-package prog-mode
754 :config (global-prettify-symbols-mode)
755 (defun indicate-buffer-boundaries-left ()
756 (setq indicate-buffer-boundaries 'left))
757 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
758
759 (use-package text-mode
760 :bind (:map text-mode-map ("C-*" . b/insert-asterism))
761 :hook ((text-mode . indicate-buffer-boundaries-left)
762 (text-mode . flyspell-mode)))
763
764 (use-package conf-mode
765 :mode "\\.*rc$")
766
767 (use-package sh-script
768 :mode ("\\.bashrc$" . sh-mode))
769
770 (use-package company
771 :disabled
772 :bind
773 (:map company-active-map
774 ([tab] . company-complete-common-or-cycle)
775 ([escape] . company-abort)
776 ("C-p" . company-select-previous-or-abort)
777 ("C-n" . company-select-next-or-abort))
778 :custom
779 (company-minimum-prefix-length 1)
780 (company-selection-wrap-around t)
781 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
782 (company-dabbrev-downcase nil)
783 (company-dabbrev-ignore-case nil)
784 ;; :config
785 ;; (global-company-mode t)
786 )
787
788 (use-package flycheck
789 :disabled
790 :defer 0.6
791 :hook (prog-mode . flycheck-mode)
792 :bind
793 (:map flycheck-mode-map
794 ("M-P" . flycheck-previous-error)
795 ("M-N" . flycheck-next-error))
796 :config
797 ;; Use the load-path from running Emacs when checking elisp files
798 (setq flycheck-emacs-lisp-load-path 'inherit)
799
800 ;; Only flycheck when I actually save the buffer
801 (setq flycheck-check-syntax-automatically '(mode-enabled save))
802 :custom (flycheck-mode-line-prefix "flyc"))
803
804 ;; (use-package flyspell)
805
806 ;; http://endlessparentheses.com/ispell-and-apostrophes.html
807 (use-package ispell
808 :disabled
809 :defer 0.6
810 :config
811 ;; ’ can be part of a word
812 (setq ispell-local-dictionary-alist
813 `((nil "[[:alpha:]]" "[^[:alpha:]]"
814 "['\x2019]" nil ("-B") nil utf-8))
815 ispell-program-name (executable-find "hunspell"))
816 ;; don't send ’ to the subprocess
817 (defun endless/replace-apostrophe (args)
818 (cons (replace-regexp-in-string
819 "’" "'" (car args))
820 (cdr args)))
821 (advice-add #'ispell-send-string :filter-args
822 #'endless/replace-apostrophe)
823
824 ;; convert ' back to ’ from the subprocess
825 (defun endless/replace-quote (args)
826 (if (not (derived-mode-p 'org-mode))
827 args
828 (cons (replace-regexp-in-string
829 "'" "’" (car args))
830 (cdr args))))
831 (advice-add #'ispell-parse-output :filter-args
832 #'endless/replace-quote))
833
834 (use-package abbrev
835 :hook (text-mode . abbrev-mode))
836
837 \f
838 ;;; Programming modes
839
840 (use-package lisp-mode
841 :config
842 (defun indent-spaces-mode ()
843 (setq indent-tabs-mode nil))
844 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
845
846 (use-package alloy-mode
847 :mode "\\.\\(als\\|dsh\\)\\'"
848 :config
849 (setq alloy-basic-offset 2)
850 ;; (defun b/alloy-simple-indent (start end)
851 ;; (interactive "r")
852 ;; ;; (if (region-active-p)
853 ;; ;; (indent-rigidly start end alloy-basic-offset)
854 ;; ;; (if (bolp)
855 ;; ;; (indent-rigidly (line-beginning-position)
856 ;; ;; (line-end-position)
857 ;; ;; alloy-basic-offset)))
858 ;; (indent-to (+ (current-column) alloy-basic-offset)))
859 :bind (:map alloy-mode-map
860 ("RET" . electric-newline-and-maybe-indent)
861 ;; ("TAB" . b/alloy-simple-indent)
862 ("TAB" . indent-for-tab-command))
863 :hook (alloy-mode . (lambda () (setq-local indent-tabs-mode nil))))
864
865 (use-package lean-mode
866 :disabled
867 :defer 0.4
868 :init (eval-when-compile (defvar lean-mode-map))
869 :bind (:map lean-mode-map
870 ("S-SPC" . company-complete))
871 :config
872 (require 'lean-input)
873 (setq default-input-method "Lean"
874 lean-input-tweak-all '(lean-input-compose
875 (lean-input-prepend "/")
876 (lean-input-nonempty))
877 lean-input-user-translations '(("/" "/")))
878 (lean-input-setup))
879
880 (use-package sgml-mode
881 :config
882 (setq sgml-basic-offset 0))
883
884 (use-package css-mode
885 :config
886 (setq css-indent-offset 2))
887
888 (use-package geiser
889 :disabled)
890
891 (use-package geiser-guile
892 :disabled
893 :config
894 (setq geiser-guile-load-path "~/src/git/guix"))
895
896 (use-package guix
897 :disabled)
898
899 (use-package go-mode
900 :disabled)
901
902 (use-package po-mode
903 :disabled
904 :hook
905 (po-mode . (lambda () (run-with-timer 0.1 nil 'View-exit))))
906
907 (use-package auctex
908 :disabled
909 :custom
910 (font-latex-fontify-sectioning 'color))
911
912 (use-package tex-mode
913 :config
914 (cl-delete-if
915 (lambda (p) (string-match "^---?" (car p)))
916 tex--prettify-symbols-alist)
917 :hook ((tex-mode . auto-fill-mode)
918 (tex-mode . flyspell-mode)))
919
920 ;; (use-package george-mode
921 ;; :straight (:host nil :repo "https://git.shemshak.org/amin/george-mode")
922 ;; :mode "\\.grg\\'")
923
924 \f
925 ;;; Emacs enhancements & auxiliary packages
926
927 (use-package man
928 :config (setq Man-width 80))
929
930 (use-package which-key
931 :defer 0.4
932 :config
933 (which-key-add-key-based-replacements
934 ;; prefixes for global prefixes and minor modes
935 "C-c !" "flycheck"
936 "C-x RET" "coding system"
937 "C-x 8" "unicode"
938 "C-x @" "event modifiers"
939 "C-x a" "abbrev/expand"
940 "C-x r" "rectangle/register/bookmark"
941 "C-x t" "tabs"
942 "C-x v" "version control"
943 "C-x X" "edebug"
944 "C-x C-a" "edebug"
945 "C-x C-k" "kmacro"
946 ;; prefixes for my personal bindings
947 "C-c &" "yasnippet"
948 "C-c a" "applications"
949 "C-c a e" "erc"
950 "C-c a o" "org"
951 "C-c a s" "shells"
952 "C-c b" "buffers"
953 "C-c c" "compile-and-comments"
954 "C-c e" "eval"
955 "C-c f" "files"
956 "C-c F" "frames"
957 "C-c g" "magit"
958 "C-S-h" "help(ful)"
959 "C-c q" "boxquote"
960 "C-c t" "themes")
961
962 ;; prefixes for major modes
963 (which-key-add-major-mode-key-based-replacements 'message-mode
964 "C-c f n" "footnote")
965 (which-key-add-major-mode-key-based-replacements 'org-mode
966 "C-c C-v" "org-babel")
967
968 (which-key-mode)
969 :custom
970 (which-key-add-column-padding 5)
971 (which-key-idle-delay 10000)
972 (which-key-idle-secondary-delay 0.05)
973 (which-key-max-description-length 32)
974 (which-key-show-early-on-C-h t))
975
976 ;; (require 'bandali-projectile)
977
978 (use-package helpful
979 :disabled
980 :defer 0.6
981 :bind
982 (("C-S-h c" . helpful-command)
983 ("C-S-h f" . helpful-callable) ; helpful-function
984 ("C-S-h v" . helpful-variable)
985 ("C-S-h k" . helpful-key)
986 ("C-S-h p" . helpful-at-point)))
987
988 (use-package unkillable-scratch
989 :defer 0.6
990 :config
991 (unkillable-scratch 1)
992 :custom
993 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
994
995 ;; ,----
996 ;; | make pretty boxed quotes like this
997 ;; `----
998 (use-package boxquote
999 :defer 0.6
1000 :bind
1001 (:prefix-map
1002 b/boxquote-prefix-map
1003 :prefix "C-c q"
1004 ("b" . boxquote-buffer)
1005 ("B" . boxquote-insert-buffer)
1006 ("d" . boxquote-defun)
1007 ("F" . boxquote-insert-file)
1008 ("hf" . boxquote-describe-function)
1009 ("hk" . boxquote-describe-key)
1010 ("hv" . boxquote-describe-variable)
1011 ("hw" . boxquote-where-is)
1012 ("k" . boxquote-kill)
1013 ("p" . boxquote-paragraph)
1014 ("q" . boxquote-boxquote)
1015 ("r" . boxquote-region)
1016 ("s" . boxquote-shell-command)
1017 ("t" . boxquote-text)
1018 ("T" . boxquote-title)
1019 ("u" . boxquote-unbox)
1020 ("U" . boxquote-unbox-region)
1021 ("y" . boxquote-yank)
1022 ("M-q" . boxquote-fill-paragraph)
1023 ("M-w" . boxquote-kill-ring-save)))
1024
1025 (use-package hl-todo
1026 ;; highlight TODOs in buffers
1027 :defer 0.5
1028 :config
1029 (global-hl-todo-mode))
1030
1031 (use-package page-break-lines
1032 :defer 0.5
1033 :custom
1034 (page-break-lines-max-width fill-column)
1035 :config
1036 (global-page-break-lines-mode))
1037
1038 (use-package expand-region
1039 :bind ("C-=" . er/expand-region))
1040
1041 (require 'bandali-yasnippet)
1042
1043 (comment
1044
1045 (use-package debbugs
1046 :bind
1047 (("C-c D d" . debbugs-gnu)
1048 ("C-c D b" . debbugs-gnu-bugs)
1049 ("C-c D e" .
1050 (lambda ()
1051 (interactive) ; bug-gnu-emacs
1052 (setq debbugs-gnu-current-suppress t)
1053 (debbugs-gnu debbugs-gnu-default-severities '("emacs"))))
1054 ("C-c D g" . ; bug-gnuzilla
1055 (lambda ()
1056 (interactive)
1057 (setq debbugs-gnu-current-suppress t)
1058 (debbugs-gnu debbugs-gnu-default-severities '("gnuzilla"))))
1059 ("C-c D G b" . ; bug-guix
1060 (lambda ()
1061 (interactive)
1062 (setq debbugs-gnu-current-suppress t)
1063 (debbugs-gnu debbugs-gnu-default-severities '("guix"))))
1064 ("C-c D G p" . ; guix-patches
1065 (lambda ()
1066 (interactive)
1067 (setq debbugs-gnu-current-suppress t)
1068 (debbugs-gnu debbugs-gnu-default-severities '("guix-patches"))))))
1069
1070 (use-package org-ref
1071 :init
1072 (b/setq-every '("~/usr/org/references.bib")
1073 reftex-default-bibliography
1074 org-ref-default-bibliography)
1075 (setq
1076 org-ref-bibliography-notes "~/usr/org/notes.org"
1077 org-ref-pdf-directory "~/usr/org/bibtex-pdfs/"))
1078
1079 ;; (use-package fill-column-indicator)
1080
1081 (use-package window
1082 :bind
1083 (("C-c w s l" . (lambda ()
1084 (interactive)
1085 (split-window-right)
1086 (other-window 1)))
1087 ("C-c w s j" . (lambda ()
1088 (interactive)
1089 (split-window-below)
1090 (other-window 1)))
1091 ("C-c w q" . quit-window))
1092 :custom
1093 (split-width-threshold 150))
1094
1095 (use-package windmove
1096 :defer 0.6
1097 :bind
1098 (("C-c w h" . windmove-left)
1099 ("C-c w j" . windmove-down)
1100 ("C-c w k" . windmove-up)
1101 ("C-c w l" . windmove-right)
1102 ("C-c w H" . windmove-swap-states-left)
1103 ("C-c w J" . windmove-swap-states-down)
1104 ("C-c w K" . windmove-swap-states-up)
1105 ("C-c w L" . windmove-swap-states-right)))
1106
1107 (use-package pass
1108 :commands pass
1109 :bind ("C-c a p" . pass)
1110 :hook (pass-mode . View-exit))
1111
1112 (use-package pdf-tools
1113 :defer 0.5
1114 :bind (:map pdf-view-mode-map
1115 ("<C-XF86Back>" . pdf-history-backward)
1116 ("<mouse-8>" . pdf-history-backward)
1117 ("<drag-mouse-8>" . pdf-history-backward)
1118 ("<C-XF86Forward>" . pdf-history-forward)
1119 ("<mouse-9>" . pdf-history-forward)
1120 ("<drag-mouse-9>" . pdf-history-forward)
1121 ("M-RET" . image-previous-line)
1122 ("C-s" . isearch-forward)
1123 ("s s" . isearch-forward))
1124 :config (pdf-tools-install nil t)
1125 :custom (pdf-view-resize-factor 1.05))
1126
1127 (use-package org-pdftools
1128 :disabled
1129 :straight (:host github :repo "fuxialexander/org-pdftools")
1130 :demand
1131 :after org
1132 :config
1133 (with-eval-after-load 'org
1134 (require 'org-pdftools)))
1135
1136 (use-package biblio)
1137
1138 (use-package reftex
1139 :hook (latex-mode . reftex-mode))
1140
1141 (use-package reftex-cite
1142 :after reftex
1143 :disabled ; enable to disable
1144 ; reftex-cite's default choice
1145 ; of previous word
1146 :config
1147 (defun reftex-get-bibkey-default ()
1148 "If the cursor is in a citation macro, return the word before the macro."
1149 (let* ((macro (reftex-what-macro 1)))
1150 (save-excursion
1151 (when (and macro (string-match "cite" (car macro)))
1152 (goto-char (cdr macro)))
1153 (reftex-this-word)))))
1154
1155 (use-package dmenu
1156 :custom
1157 (dmenu-prompt-string "run: ")
1158 (dmenu-save-file (b/var "dmenu-items")))
1159
1160 (use-package eosd
1161 ;; TODO: fix build by properly building the eosd-pixbuf.c module
1162 ;; e.g. see https://github.com/raxod502/straight.el/issues/386
1163 :disabled
1164 :straight (:host github :repo "clarete/eosd")
1165 :demand
1166 :after exwm
1167 :config
1168 (eosd-start))
1169
1170 (use-package eww
1171 :bind ("C-c a e w" . eww)
1172 :custom
1173 (eww-download-directory (file-name-as-directory
1174 (getenv "XDG_DOWNLOAD_DIR"))))
1175
1176 \f
1177 ;;; Post initialization
1178
1179 )
1180 (message "Loading %s...done (%.3fs)" user-init-file
1181 (float-time (time-subtract (current-time)
1182 b/before-user-init-time)))
1183
1184 ;;; init.el ends here