[emacs] fix installation instructions
[~bandali/configs] / init.org
CommitLineData
5fece105
AB
1#+title: =aminb='s Literate Emacs Configuration
2#+author: Amin Bandali
3#+babel: :cache yes
4#+property: header-args :tangle yes
5
6* About
7:PROPERTIES:
8:CUSTOM_ID: about
9:END:
10
11This org file is my literate configuration for GNU Emacs, and is
12tangled to [[./init.el][init.el]]. Packages are installed and managed using
13[[https://github.com/emacscollective/borg][Borg]]. Over the years, I've taken inspiration from configurations of
14many different people. Some of the configurations that I can remember
15off the top of my head are:
16
17- [[https://github.com/dieggsy/dotfiles][dieggsy/dotfiles]]: literate Emacs and dotfiles configuration, uses
18 straight.el for managing packages
19- [[https://github.com/dakra/dmacs][dakra/dmacs]]: literate Emacs configuration, using Borg for managing
20 packages
21- [[http://pages.sachachua.com/.emacs.d/Sacha.html][Sacha Chua's literate Emacs configuration]]
22- [[https://github.com/dakrone/eos][dakrone/eos]]
23- Ryan Rix's [[http://doc.rix.si/cce/cce.html][Complete Computing Environment]] ([[http://doc.rix.si/projects/fsem.html][about cce]])
24- [[https://github.com/jwiegley/dot-emacs][jwiegley/dot-emacs]]: nix-based configuration
25- [[https://github.com/wasamasa/dotemacs][wasamasa/dotemacs]]
26- [[https://github.com/hlissner/doom-emacs][Doom Emacs]]
27
28I'd like to have a fully reproducible Emacs setup (part of the reason
29why I store my configuration in this repository) but unfortunately out
30of the box, that's not achievable with =package.el=, not currently
31anyway. So, I've opted to use Borg. For what it's worth, I briefly
32experimented with [[https://github.com/raxod502/straight.el][straight.el]], but found that it added about 2 seconds
33to my init time; which is unacceptable for me: I use Emacs as my
34window manager (via EXWM) and coming from bspwm, I'm too used to
35having fast startup times.
36
37** Installation
38
39To use this config for your Emacs, first you need to clone this repo,
40then bootstrap Borg, tell Borg to retrieve package submodules, and
41byte-compiled the packages. Something along these lines should work:
42
43#+begin_src sh :tangle no
bfc7cfa2 44git clone https://git.sr.ht/~bandali/dotfiles ~/.emacs.d
5fece105
AB
45cd ~/.emacs.d
46make bootstrap-borg
47make bootstrap
5fece105
AB
48#+end_src
49
50* Contents :toc_1:noexport:
51
52- [[#about][About]]
53- [[#header][Header]]
54- [[#initial-setup][Initial setup]]
55- [[#core][Core]]
673d5faa
AB
56- [[#borg-essentials][Borg's =layer/essentials=]]
57- [[#editing][Editing]]
58- [[#syntax-spell-checking][Syntax and spell checking]]
59- [[#programming-modes][Programming modes]]
60- [[#emacs-enhancements][Emacs enhancements]]
61- [[#email][Email]]
62- [[#blogging][Blogging]]
5fece105
AB
63- [[#post-initialization][Post initialization]]
64- [[#footer][Footer]]
65
66* Header
67:PROPERTIES:
68:CUSTOM_ID: header
69:END:
70
71** First line
72
73#+begin_src emacs-lisp :comments none
f1149591 74;;; init.el --- Amin Bandali's Emacs config -*- lexical-binding: t; eval: (view-mode 1) -*-
5fece105
AB
75#+end_src
76
77Enable =view-mode=, which both makes the file read-only (as a reminder
78that =init.el= is an auto-generated file, not supposed to be edited),
79and provides some convenient key bindings for browsing through the
80file.
81
82** License
83
84#+begin_src emacs-lisp :comments none
85;; Copyright (C) 2018 Amin Bandali <bandali@gnu.org>
86
87;; This program is free software: you can redistribute it and/or modify
88;; it under the terms of the GNU General Public License as published by
89;; the Free Software Foundation, either version 3 of the License, or
90;; (at your option) any later version.
91
92;; This program is distributed in the hope that it will be useful,
93;; but WITHOUT ANY WARRANTY; without even the implied warranty of
94;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
95;; GNU General Public License for more details.
96
97;; You should have received a copy of the GNU General Public License
98;; along with this program. If not, see <https://www.gnu.org/licenses/>.
99#+end_src
100
101** Commentary
102
103#+begin_src emacs-lisp :comments none
104;;; Commentary:
105
c5d8bb25
AB
106;; Emacs configuration of Amin Bandali, computer scientist, functional
107;; programmer, and free software advocate.
5fece105
AB
108
109;; THIS FILE IS AUTO-GENERATED FROM `init.org'.
110#+end_src
111
5fece105
AB
112* Initial setup
113:PROPERTIES:
114:CUSTOM_ID: initial-setup
115:END:
116
5fece105
AB
117** Emacs initialization
118
119I'd like to do a couple of measurements of Emacs' startup time. First,
120let's see how long Emacs takes to start up, before even loading
121=init.el=, i.e. =user-init-file=:
122
123#+begin_src emacs-lisp
c5d8bb25 124(defvar a/before-user-init-time (current-time)
5fece105
AB
125 "Value of `current-time' when Emacs begins loading `user-init-file'.")
126(message "Loading Emacs...done (%.3fs)"
c5d8bb25 127 (float-time (time-subtract a/before-user-init-time
5fece105
AB
128 before-init-time)))
129#+end_src
130
131Also, temporarily increase ~gc-cons-threshhold~ and
132~gc-cons-percentage~ during startup to reduce garbage collection
133frequency. Clearing the ~file-name-handler-alist~ seems to help reduce
134startup time as well.
135
136#+begin_src emacs-lisp
c5d8bb25
AB
137(defvar a/gc-cons-threshold gc-cons-threshold)
138(defvar a/gc-cons-percentage gc-cons-percentage)
139(defvar a/file-name-handler-alist file-name-handler-alist)
5fece105
AB
140(setq gc-cons-threshold (* 400 1024 1024) ; 400 MiB
141 gc-cons-percentage 0.6
142 file-name-handler-alist nil
143 ;; sidesteps a bug when profiling with esup
144 esup-child-profile-require-level 0)
145#+end_src
146
147Of course, we'd like to set them back to their defaults once we're
148done initializing.
149
150#+begin_src emacs-lisp
151(add-hook
152 'after-init-hook
153 (lambda ()
c5d8bb25
AB
154 (setq gc-cons-threshold a/gc-cons-threshold
155 gc-cons-percentage a/gc-cons-percentage
156 file-name-handler-alist a/file-name-handler-alist)))
5fece105
AB
157#+end_src
158
159Increase the number of lines kept in message logs (the =*Messages*=
160buffer).
161
162#+begin_src emacs-lisp
163(setq message-log-max 20000)
164#+end_src
165
166Optionally, we could suppress some byte compiler warnings like below,
167but for now I've decided to keep them enabled. See documentation for
168~byte-compile-warnings~ for more details.
169
170#+begin_src emacs-lisp
171;; (setq byte-compile-warnings
172;; '(not free-vars unresolved noruntime lexical make-local))
173#+end_src
174
175** whoami
176
177#+begin_src emacs-lisp
178(setq user-full-name "Amin Bandali"
179 user-mail-address "amin@aminb.org")
180#+end_src
181
182** Package management
183
184*** No =package.el=
185
186I can do all my package management things with Borg, and don't need
187Emacs' built-in =package.el=. Emacs 27 lets us disable =package.el= in
188the =early-init-file= (see [[https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=24acb31c04b4048b85311d794e600ecd7ce60d3b][here]]).
189
190#+begin_src emacs-lisp :tangle early-init.el
191(setq package-enable-at-startup nil)
192#+end_src
193
194But since Emacs 27 isn't out yet (Emacs 26 is just around the corner
195right now), and even when released it'll be long before most distros
196ship in their repos, I'll still put the old workaround with the
197commented call to ~package-initialize~ here anyway.
198
199#+begin_src emacs-lisp
200(setq package-enable-at-startup nil)
201;; (package-initialize)
202#+end_src
203
204*** Borg
205
206#+begin_quote
207Assimilate Emacs packages as Git submodules
208#+end_quote
209
210[[https://github.com/emacscollective/borg][Borg]] is at the heart of package management of my Emacs setup. In
211short, it creates a git submodule in =lib/= for each package, which
212can then be managed with the help of Magit or other tools.
213
214#+begin_src emacs-lisp
215(setq user-init-file (or load-file-name buffer-file-name)
216 user-emacs-directory (file-name-directory user-init-file))
217(add-to-list 'load-path
218 (expand-file-name "lib/borg" user-emacs-directory))
6ce4ebba 219;; Main engine start...
5fece105 220(require 'borg)
6ce4ebba 221;; Solid rocket booster ignition...
5fece105 222(borg-initialize)
6ce4ebba 223;; We have lift off!
5fece105
AB
224
225;; (require 'borg-nix-shell)
226;; (setq borg-build-shell-command 'borg-nix-shell-build-command)
227
228(with-eval-after-load 'bind-key
229 (bind-keys
230 :package borg
231 ("C-c b A" . borg-activate)
232 ("C-c b a" . borg-assimilate)
233 ("C-c b b" . borg-build)
234 ("C-c b c" . borg-clone)
235 ("C-c b r" . borg-remove)))
236#+end_src
237
238*** =use-package=
239
240#+begin_quote
241A use-package declaration for simplifying your .emacs
242#+end_quote
243
244[[https://github.com/jwiegley/use-package][use-package]] is an awesome utility for managing and configuring
245packages (in our case especially the latter) in a neatly organized way
246and without compromising on performance.
247
248#+begin_src emacs-lisp
249(require 'use-package)
250(if nil ; set to t when need to debug init
251 (setq use-package-verbose t
252 use-package-expand-minimally nil
253 use-package-compute-statistics t
254 debug-on-error t)
255 (setq use-package-verbose nil
256 use-package-expand-minimally t))
6ce4ebba
AB
257
258(setq use-package-always-defer t)
5fece105
AB
259#+end_src
260
261*** Epkg
262
263#+begin_quote
264Browse the Emacsmirror package database
265#+end_quote
266
267Epkg provides access to a local copy of the [[https://emacsmirror.net][Emacsmirror]] package
268database, low-level functions for querying the database, and a
269=package.el=-like user interface for browsing the available packages.
270
271#+begin_src emacs-lisp
272(use-package epkg
5fece105
AB
273 :bind
274 (("C-c b d" . epkg-describe-package)
275 ("C-c b p" . epkg-list-packages)
d568ebac
AB
276 ("C-c b u" . epkg-update))
277 :config
2b34d6dd 278 (eval-when-compile (defvar ivy-initial-inputs-alist))
d568ebac
AB
279 (with-eval-after-load 'ivy
280 (add-to-list
281 'ivy-initial-inputs-alist '(epkg-describe-package . "^") t)))
5fece105
AB
282#+end_src
283
284** No littering in =~/.emacs.d=
285
286#+begin_quote
287Help keeping ~/.emacs.d clean
288#+end_quote
289
290By default, even for Emacs' built-in packages, the configuration files
291and persistent data are all over the place. Use =no-littering= to help
292contain the mess.
293
294#+begin_src emacs-lisp
295(use-package no-littering
296 :demand t
297 :config
298 (savehist-mode 1)
299 (add-to-list 'savehist-additional-variables 'kill-ring)
300 (save-place-mode 1)
301 (setq auto-save-file-name-transforms
302 `((".*" ,(no-littering-expand-var-file-name "auto-save/") t))))
303#+end_src
304
305** Custom file (=custom.el=)
306
307I'm not planning on using the custom file much, but even so, I
308definitely don't want it mixing with =init.el=. So, here; let's give
309it it's own file. While at it, treat themes as safe.
310
311#+begin_src emacs-lisp
312(use-package custom
313 :no-require t
314 :config
315 (setq custom-file (no-littering-expand-etc-file-name "custom.el"))
316 (when (file-exists-p custom-file)
317 (load custom-file))
318 (setf custom-safe-themes t))
319#+end_src
320
321** Secrets file
322
323Load the secrets file if it exists, otherwise show a warning.
324
325#+begin_src emacs-lisp
326(with-demoted-errors
327 (load (no-littering-expand-etc-file-name "secrets")))
328#+end_src
329
330** Better =$PATH= handling
331
332Let's use [[https://github.com/purcell/exec-path-from-shell][exec-path-from-shell]] to make Emacs use the =$PATH= as set up
333in my shell.
334
335#+begin_src emacs-lisp
336(use-package exec-path-from-shell
337 :defer 1
338 :init
339 (setq exec-path-from-shell-check-startup-files nil)
340 :config
341 (exec-path-from-shell-initialize)
342 ;; while we're at it, let's fix access to our running ssh-agent
343 (exec-path-from-shell-copy-env "SSH_AGENT_PID")
344 (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
345#+end_src
346
21ad71fa 347** COMMENT Only one custom theme at a time
5fece105
AB
348
349#+begin_src emacs-lisp
21ad71fa
AB
350(defadvice load-theme (before clear-previous-themes activate)
351 "Clear existing theme settings instead of layering them"
352 (mapc #'disable-theme custom-enabled-themes))
5fece105
AB
353#+end_src
354
355** Server
356
357Start server if not already running. Alternatively, can be done by
358issuing =emacs --daemon= in the terminal, which can be automated with
359a systemd service or using =brew services start emacs= on macOS. I use
360Emacs as my window manager (via EXWM), so I always start Emacs on
361login; so starting the server from inside Emacs is good enough for me.
362
363See [[https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server][Using Emacs as a Server]].
364
365#+begin_src emacs-lisp
366(use-package server
367 :defer 1
368 :config (or (server-running-p) (server-mode)))
369#+end_src
370
21ad71fa 371** COMMENT Unicode support
5fece105
AB
372
373Font stack with better unicode support, around =Ubuntu Mono= and
374=Hack=.
375
376#+begin_src emacs-lisp
21ad71fa
AB
377(dolist (ft (fontset-list))
378 (set-fontset-font
379 ft
380 'unicode
381 (font-spec :name "Source Code Pro" :size 14))
382 (set-fontset-font
383 ft
384 'unicode
385 (font-spec :name "DejaVu Sans Mono")
386 nil
387 'append)
388 ;; (set-fontset-font
389 ;; ft
390 ;; 'unicode
391 ;; (font-spec
392 ;; :name "Symbola monospacified for DejaVu Sans Mono")
393 ;; nil
394 ;; 'append)
395 ;; (set-fontset-font
396 ;; ft
397 ;; #x2115 ; ℕ
398 ;; (font-spec :name "DejaVu Sans Mono")
399 ;; nil
400 ;; 'append)
401 (set-fontset-font
402 ft
403 (cons ?Α ?ω)
404 (font-spec :name "DejaVu Sans Mono" :size 14)
405 nil
406 'prepend))
5fece105
AB
407#+end_src
408
409** Gentler font resizing
410
411#+begin_src emacs-lisp
412(setq text-scale-mode-step 1.05)
413#+end_src
414
415** Focus follows mouse
416
417I’d like focus to follow the mouse when I move the cursor from one
418window to the next.
419
420#+begin_src emacs-lisp
421(setq mouse-autoselect-window t)
422#+end_src
423
424Let’s define a function to conveniently disable this for certain
425buffers and/or modes.
426
427#+begin_src emacs-lisp
c5d8bb25 428(defun a/no-mouse-autoselect-window ()
5fece105
AB
429 (make-local-variable 'mouse-autoselect-window)
430 (setq mouse-autoselect-window nil))
431#+end_src
432
433** Libraries
434
435#+begin_src emacs-lisp
436(require 'cl-lib)
437(require 'subr-x)
438#+end_src
439
440** Useful utilities
441
5fece105
AB
442Convenience macro for =setq='ing multiple variables to the same value:
443
444#+begin_src emacs-lisp
c5d8bb25 445(defmacro a/setq-every (value &rest vars)
5fece105
AB
446 "Set all the variables from VARS to value VALUE."
447 (declare (indent defun) (debug t))
448 `(progn ,@(mapcar (lambda (x) (list 'setq x value)) vars)))
449#+end_src
450
cb0c13d0
AB
451The following process-related stuff from [[https://github.com/alezost/emacs-config][alezost's emacs-config]].
452
453#+begin_src emacs-lisp
454(defun a/start-process (program &rest args)
455 "Same as `start-process', but doesn't bother about name and buffer."
456 (let ((process-name (concat program "_process"))
457 (buffer-name (generate-new-buffer-name
458 (concat program "_output"))))
459 (apply #'start-process
460 process-name buffer-name program args)))
461
462(defun a/dired-start-process (program &optional args)
463 "Open current file with a PROGRAM."
464 ;; Shell command looks like this: "program [ARGS]... FILE" (ARGS can
465 ;; be nil, so remove it).
466 (apply #'a/start-process
467 program
468 (remove nil (list args (dired-get-file-for-visit)))))
469#+end_src
470
5fece105
AB
471* Core
472:PROPERTIES:
473:CUSTOM_ID: core
474:END:
475
5fece105
AB
476** Defaults
477
478*** Time and battery in mode-line
479
480Enable displaying time and battery in the mode-line, since I'm not
481using the Xfce panel anymore. Also, I don't need to see the load
482average on a regular basis, so disable that.
483
484Note: using =i3status= on sway at the moment, so disabling this.
485
486#+begin_src emacs-lisp :tangle no
487(use-package time
488 :init
489 (setq display-time-default-load-average nil)
490 :config
491 (display-time-mode))
492
493(use-package battery
494 :config
495 (display-battery-mode))
496#+end_src
497
498*** Smaller fringe
499
500Might want to set the fringe to a smaller value, especially if using
501EXWM. I'm fine with the default for now.
502
503#+begin_src emacs-lisp
504;; (fringe-mode '(3 . 1))
505(fringe-mode nil)
506#+end_src
507
508*** Disable disabled commands
509
510Emacs disables some commands by default that could persumably be
511confusing for novice users. Let's disable that.
512
513#+begin_src emacs-lisp
514(setq disabled-command-function nil)
515#+end_src
516
517*** Kill-ring
518
519Save what I copy into clipboard from other applications into Emacs'
520kill-ring, which would allow me to still be able to easily access it
521in case I kill (cut or copy) something else inside Emacs before
522yanking (pasting) what I'd originally intended to.
523
524#+begin_src emacs-lisp
525(setq save-interprogram-paste-before-kill t)
526#+end_src
527
528*** Minibuffer
529
530#+begin_src emacs-lisp
531(setq enable-recursive-minibuffers t
532 resize-mini-windows t)
533#+end_src
534
535*** Lazy-person-friendly yes/no prompts
536
537Lazy people would prefer to type fewer keystrokes, especially for yes
538or no questions. I'm lazy.
539
540#+begin_src emacs-lisp
541(defalias 'yes-or-no-p #'y-or-n-p)
542#+end_src
543
544*** Startup screen and =*scratch*=
545
546Firstly, let Emacs know that I'd like to have =*scratch*= as my
547startup buffer.
548
549#+begin_src emacs-lisp
550(setq initial-buffer-choice t)
551#+end_src
552
553Now let's customize the =*scratch*= buffer a bit. First off, I don't
554need the default hint.
555
556#+begin_src emacs-lisp
557(setq initial-scratch-message nil)
558#+end_src
559
560Also, let's use Text mode as the major mode, in case I want to
561customize it (=*scratch*='s default major mode, Fundamental mode,
562can't really be customized).
563
564#+begin_src emacs-lisp
565(setq initial-major-mode 'text-mode)
566#+end_src
567
568Inhibit the buffer list when more than 2 files are loaded.
569
570#+begin_src emacs-lisp
571(setq inhibit-startup-buffer-menu t)
572#+end_src
573
574I don't really need to see the startup screen or echo area message
575either.
576
577#+begin_src emacs-lisp
578(advice-add #'display-startup-echo-area-message :override #'ignore)
579(setq inhibit-startup-screen t
580 inhibit-startup-echo-area-message user-login-name)
581#+end_src
582
583*** More useful frame titles
584
585Show either the file name or the buffer name (in case the buffer isn't
586visiting a file). Borrowed from Emacs Prelude.
587
588#+begin_src emacs-lisp
589(setq frame-title-format
590 '("" invocation-name " - "
591 (:eval (if (buffer-file-name)
592 (abbreviate-file-name (buffer-file-name))
593 "%b"))))
594#+end_src
595
596*** Backups
597
598Emacs' default backup settings aren't that great. Let's use more
599sensible options. See documentation for the ~make-backup-file~
600variable.
601
602#+begin_src emacs-lisp
603(setq backup-by-copying t
604 version-control t
605 delete-old-versions t)
606#+end_src
607
608*** Auto revert
609
610Enable automatic reloading of changed buffers and files.
611
612#+begin_src emacs-lisp
613(global-auto-revert-mode 1)
614(setq auto-revert-verbose nil
615 global-auto-revert-non-file-buffers nil)
616#+end_src
617
618*** Always use space for indentation
619
620#+begin_src emacs-lisp
621(setq-default
622 indent-tabs-mode nil
623 require-final-newline t
624 tab-width 4)
625#+end_src
626
627*** Winner mode
628
629Enable =winner-mode=.
630
631#+begin_src emacs-lisp
632(winner-mode 1)
633#+end_src
634
f79ed7c6
AB
635*** Don’t display =*compilation*= on success
636
637Based on https://stackoverflow.com/a/17788551, with changes to use
638=cl-letf= instead of the now obsolete =flet=.
c44ace12
AB
639
640#+begin_src emacs-lisp
f1516d51 641(with-eval-after-load 'compile
c5d8bb25 642 (defun a/compilation-finish-function (buffer outstr)
5e07a091
AB
643 (unless (string-match "finished" outstr)
644 (switch-to-buffer-other-window buffer))
645 t)
f79ed7c6 646
c5d8bb25 647 (setq compilation-finish-functions #'a/compilation-finish-function)
f79ed7c6 648
5e07a091 649 (require 'cl-macs)
f79ed7c6 650
5e07a091
AB
651 (defadvice compilation-start
652 (around inhibit-display
653 (command &optional mode name-function highlight-regexp))
654 (if (not (string-match "^\\(find\\|grep\\)" command))
0571b240 655 (cl-letf (((symbol-function 'display-buffer) #'ignore))
5e07a091
AB
656 (save-window-excursion ad-do-it))
657 ad-do-it))
658 (ad-activate 'compilation-start))
5fece105
AB
659#+end_src
660
661*** Search for non-ASCII characters
662
663I’d like non-ASCII characters such as ‘’“”«»‹›áⓐ𝒶 to be selected when
664I search for their ASCII counterpart. Shoutout to [[http://endlessparentheses.com/new-in-emacs-25-1-easily-search-non-ascii-characters.html][endlessparentheses]]
665for this.
666
667#+begin_src emacs-lisp
668(setq search-default-mode #'char-fold-to-regexp)
669
670;; uncomment to extend this behaviour to query-replace
671;; (setq replace-char-fold t)
672#+end_src
673
96b3e55d
AB
674*** Cursor shape
675
676#+begin_src emacs-lisp
677(setq-default cursor-type 'bar)
678#+end_src
679
6ce4ebba
AB
680*** Allow scrolling in Isearch
681
682#+begin_src emacs-lisp
683(setq isearch-allow-scroll t)
684#+end_src
685
5fece105
AB
686** Bindings
687
688#+begin_src emacs-lisp
689(bind-keys
690 ("C-c a i" . ielm)
691
692 ("C-c e b" . eval-buffer)
693 ("C-c e r" . eval-region)
694
695 ("C-c F m" . make-frame-command)
696 ("C-c F d" . delete-frame)
697 ("C-c F D" . delete-other-frames)
698
699 ("C-c o" . other-window)
700
701 ("C-c Q" . save-buffers-kill-terminal)
702
703 ("C-S-h C" . describe-char)
704 ("C-S-h F" . describe-face)
705
706 ("C-x K" . kill-this-buffer)
707
708 ("s-p" . beginning-of-buffer)
709 ("s-n" . end-of-buffer))
710#+end_src
711
712** Packages
713
714The packages in this section are absolutely essential to my everyday
715workflow, and they play key roles in how I do my computing. They
716immensely enhance the Emacs experience for me; both using Emacs, and
717customizing it.
718
719*** [[https://github.com/emacscollective/auto-compile][auto-compile]]
720
721#+begin_src emacs-lisp
722(use-package auto-compile
723 :demand t
724 :config
725 (auto-compile-on-load-mode)
726 (auto-compile-on-save-mode)
727 (setq auto-compile-display-buffer nil
728 auto-compile-mode-line-counter t
729 auto-compile-source-recreate-deletes-dest t
730 auto-compile-toggle-deletes-nonlib-dest t
731 auto-compile-update-autoloads t)
732 (add-hook 'auto-compile-inhibit-compile-hook
733 'auto-compile-inhibit-compile-detached-git-head))
734#+end_src
735
6ce4ebba 736*** [[https://orgmode.org/][Org]]
5fece105
AB
737
738#+begin_quote
739Org mode is for keeping notes, maintaining TODO lists, planning
740projects, and authoring documents with a fast and effective plain-text
741system.
742#+end_quote
743
744In short, my favourite way of life.
745
746#+begin_src emacs-lisp
747(use-package org
748 :defer 1
749 :config
750 (setq org-src-tab-acts-natively t
751 org-src-preserve-indentation nil
752 org-edit-src-content-indentation 0
753 org-email-link-description-format "Email %c: %s" ; %.30s
754 org-highlight-latex-and-related '(entities)
815c338b
AB
755 org-use-speed-commands t
756 org-startup-folded 'content
757 org-catch-invisible-edits 'show-and-error
5fece105
AB
758 org-log-done 'time)
759 (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t)
760 (font-lock-add-keywords
761 'org-mode
762 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
763 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
764 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
765 (4 '(:foreground "#c5c8c6") t))) ; title
766 t)
767 :bind (:map org-mode-map ("M-L" . org-insert-last-stored-link))
768 :hook ((org-mode . org-indent-mode)
769 (org-mode . auto-fill-mode)
770 (org-mode . flyspell-mode))
771 :custom
772 (org-latex-packages-alist '(("" "listings") ("" "color")))
773 :custom-face
774 '(org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21"))))
775 '(org-block ((t (:background "#1d1f21"))))
776 '(org-latex-and-related ((t (:foreground "#b294bb")))))
777
778(use-package ox-latex
779 :after ox
780 :config
781 (setq org-latex-listings 'listings
782 ;; org-latex-prefer-user-labels t
783 )
5fece105
AB
784 (add-to-list 'org-latex-classes
785 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
6ce4ebba
AB
786 ("\\section{%s}" . "\\section*{%s}")
787 ("\\subsection{%s}" . "\\subsection*{%s}")
5fece105 788 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
6ce4ebba
AB
789 ("\\paragraph{%s}" . "\\paragraph*{%s}")
790 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
dfd86f53
AB
791 t)
792 (require 'ox-beamer))
5fece105
AB
793#+end_src
794
795**** asynchronous tangle
796
c5d8bb25 797=a/async-babel-tangle= is a function closely inspired by [[https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles][dieggsy's
5fece105
AB
798d/async-babel-tangle]] which uses [[https://github.com/jwiegley/emacs-async][async]] to asynchronously tangle an org
799file.
800
801#+begin_src emacs-lisp
ab6781dd 802(with-eval-after-load 'org
c5d8bb25 803 (defvar a/show-async-tangle-results nil
5fece105
AB
804 "Keep *emacs* async buffers around for later inspection.")
805
c5d8bb25 806 (defvar a/show-async-tangle-time nil
5fece105
AB
807 "Show the time spent tangling the file.")
808
c5d8bb25 809 (defvar a/async-tangle-post-compile "make ti"
5fece105
AB
810 "If non-nil, pass to `compile' after successful tangle.")
811
6ce4ebba
AB
812 (defvar a/async-tangle-byte-recompile nil
813 "If non-nil, byte-recompile the file on successful tangle.")
814
c5d8bb25 815 (defun a/async-babel-tangle ()
5fece105
AB
816 "Tangle org file asynchronously."
817 (interactive)
818 (let* ((file-tangle-start-time (current-time))
819 (file (buffer-file-name))
820 (file-nodir (file-name-nondirectory file))
0571b240 821 ;; (async-quiet-switch "-q")
6ce4ebba 822 (file-noext (file-name-sans-extension file)))
5fece105
AB
823 (async-start
824 `(lambda ()
825 (require 'org)
826 (org-babel-tangle-file ,file))
c5d8bb25 827 (unless a/show-async-tangle-results
5fece105
AB
828 `(lambda (result)
829 (if result
830 (progn
6ce4ebba 831 ;; (setq byte-compile-warnings '(not noruntime unresolved))
5fece105
AB
832 (message "Tangled %s%s"
833 ,file-nodir
c5d8bb25 834 (if a/show-async-tangle-time
5fece105
AB
835 (format " (%.3fs)"
836 (float-time (time-subtract (current-time)
837 ',file-tangle-start-time)))
838 ""))
c5d8bb25 839 (when a/async-tangle-post-compile
6ce4ebba
AB
840 (compile a/async-tangle-post-compile))
841 (when a/async-tangle-byte-recompile
842 (byte-recompile-file (concat ,file-noext ".el"))))
5fece105
AB
843 (message "Tangling %s failed" ,file-nodir))))))))
844
845(add-to-list
846 'safe-local-variable-values
c5d8bb25 847 '(eval add-hook 'after-save-hook #'a/async-babel-tangle 'append 'local))
5fece105
AB
848#+end_src
849
850*** [[https://magit.vc/][Magit]]
851
852#+begin_quote
853It's Magit! A Git porcelain inside Emacs.
854#+end_quote
855
856Not just how I do git, but /the/ way to do git.
857
858#+begin_src emacs-lisp
859(use-package magit
860 :defer 1
861 :bind (("C-x g" . magit-status)
862 ("s-g s" . magit-status)
863 ("s-g l" . magit-log-buffer-file))
864 :config
865 (magit-add-section-hook 'magit-status-sections-hook
866 'magit-insert-modules
867 'magit-insert-stashes
868 'append)
869 (setq
870 magit-repository-directories '(("~/.emacs.d/" . 0)
871 ("~/src/git/" . 1)))
872 (nconc magit-section-initial-visibility-alist
873 '(([unpulled status] . show)
874 ([unpushed status] . show)))
875 :custom-face (magit-diff-file-heading ((t (:weight normal)))))
876#+end_src
877
6ce4ebba
AB
878*** recentf
879
880Recently opened files.
881
882#+begin_src emacs-lisp
883(use-package recentf
884 :defer 0.5
885 :config
886 (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:")
887 (setq recentf-max-saved-items 40))
888#+end_src
889
890*** smex
891
892#+begin_quote
893A smart M-x enhancement for Emacs.
894#+end_quote
895
896Mostly because =counsel= needs it to remember history.
897
898#+begin_src emacs-lisp
899(use-package smex)
900#+end_src
901
5fece105
AB
902*** [[https://github.com/abo-abo/swiper][Ivy]] (and friends)
903
904#+begin_quote
905Ivy - a generic completion frontend for Emacs, Swiper - isearch with
906an overview, and more. Oh, man!
907#+end_quote
908
909There's no way I could top that, so I won't attempt to.
910
911**** Ivy
912
913#+begin_src emacs-lisp
914(use-package ivy
915 :defer 1
916 :bind
917 (:map ivy-minibuffer-map
918 ([escape] . keyboard-escape-quit)
919 ([S-up] . ivy-previous-history-element)
920 ([S-down] . ivy-next-history-element)
921 ("DEL" . ivy-backward-delete-char))
922 :config
923 (setq ivy-wrap t)
924 (ivy-mode 1)
925 ;; :custom-face
926 ;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold))))
927 ;; (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold))))
928 ;; (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold))))
929)
930#+end_src
931
932**** Swiper
933
934#+begin_src emacs-lisp
935(use-package swiper
6ce4ebba 936 :after ivy
f2a57944
AB
937 :bind (("C-s" . swiper)
938 ("C-r" . swiper)
939 ("C-S-s" . isearch-forward)))
5fece105
AB
940#+end_src
941
942**** Counsel
943
944#+begin_src emacs-lisp
945(use-package counsel
946 :defer 1
6ce4ebba 947 :after ivy
5fece105
AB
948 :bind (([remap execute-extended-command] . counsel-M-x)
949 ([remap find-file] . counsel-find-file)
950 ("s-r" . counsel-recentf)
951 ("C-c x" . counsel-M-x)
952 ("C-c f ." . counsel-find-file)
953 :map minibuffer-local-map
954 ("C-r" . counsel-minibuffer-history))
955 :config
956 (counsel-mode 1)
957 (defalias 'locate #'counsel-locate))
958#+end_src
959
960*** eshell
961
962#+begin_src emacs-lisp
963(use-package eshell
964 :defer 1
965 :commands eshell
23cd3185 966 :bind ("C-c a s e" . eshell)
5fece105
AB
967 :config
968 (eval-when-compile (defvar eshell-prompt-regexp))
c5d8bb25 969 (defun a/eshell-quit-or-delete-char (arg)
5fece105
AB
970 (interactive "p")
971 (if (and (eolp) (looking-back eshell-prompt-regexp nil))
972 (eshell-life-is-too-much)
973 (delete-char arg)))
974
c5d8bb25 975 (defun a/eshell-clear ()
5fece105
AB
976 (interactive)
977 (let ((inhibit-read-only t))
978 (erase-buffer))
979 (eshell-send-input))
980
c5d8bb25 981 (defun a/eshell-setup ()
5fece105 982 (make-local-variable 'company-idle-delay)
59ff41b6
AB
983 (defvar company-idle-delay)
984 (setq company-idle-delay nil)
5fece105 985 (bind-keys :map eshell-mode-map
c5d8bb25
AB
986 ("C-d" . a/eshell-quit-or-delete-char)
987 ("C-S-l" . a/eshell-clear)
5fece105
AB
988 ("M-r" . counsel-esh-history)
989 ([tab] . company-complete)))
990
c5d8bb25 991 :hook (eshell-mode . a/eshell-setup)
5fece105
AB
992 :custom
993 (eshell-hist-ignoredups t)
994 (eshell-input-filter 'eshell-input-filter-initial-space))
995#+end_src
996
997*** Ibuffer
998
999#+begin_src emacs-lisp
1000(use-package ibuffer
5fece105
AB
1001 :bind
1002 (("C-x C-b" . ibuffer-other-window)
1003 :map ibuffer-mode-map
1004 ("P" . ibuffer-backward-filter-group)
1005 ("N" . ibuffer-forward-filter-group)
1006 ("M-p" . ibuffer-do-print)
1007 ("M-n" . ibuffer-do-shell-command-pipe-replace))
1008 :config
1009 ;; Use human readable Size column instead of original one
1010 (define-ibuffer-column size-h
1011 (:name "Size" :inline t)
1012 (cond
1013 ((> (buffer-size) 1000000) (format "%7.1fM" (/ (buffer-size) 1000000.0)))
1014 ((> (buffer-size) 100000) (format "%7.0fk" (/ (buffer-size) 1000.0)))
1015 ((> (buffer-size) 1000) (format "%7.1fk" (/ (buffer-size) 1000.0)))
1016 (t (format "%8d" (buffer-size)))))
1017 :custom
1018 (ibuffer-saved-filter-groups
1019 '(("default"
1020 ("dired" (mode . dired-mode))
1021 ("org" (mode . org-mode))
4e0afb99
AB
1022 ("gnus"
1023 (or
1024 (mode . gnus-group-mode)
1025 (mode . gnus-summary-mode)
1026 (mode . gnus-article-mode)
1027 ;; not really, but...
1028 (mode . message-mode)))
5fece105
AB
1029 ("web"
1030 (or
1031 (mode . web-mode)
1032 (mode . css-mode)
1033 (mode . scss-mode)
1034 (mode . js2-mode)))
1035 ("shell"
1036 (or
1037 (mode . eshell-mode)
4e0afb99
AB
1038 (mode . shell-mode)
1039 (mode . term-mode)))
5fece105
AB
1040 ("programming"
1041 (or
1042 (mode . python-mode)
4e0afb99 1043 (mode . c-mode)
5fece105 1044 (mode . c++-mode)
4e0afb99
AB
1045 (mode . emacs-lisp-mode)
1046 (mode . scheme-mode)
1047 (mode . haskell-mode)
1048 (mode . lean-mode)))
5fece105
AB
1049 ("emacs"
1050 (or
1051 (name . "^\\*scratch\\*$")
4e0afb99 1052 (name . "^\\*Messages\\*$"))))))
5fece105
AB
1053 (ibuffer-formats
1054 '((mark modified read-only locked " "
1055 (name 18 18 :left :elide)
1056 " "
1057 (size-h 9 -1 :right)
1058 " "
1059 (mode 16 16 :left :elide)
1060 " " filename-and-process)
1061 (mark " "
1062 (name 16 -1)
1063 " " filename)))
1064 :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
1065#+end_src
1066
1067*** Outline
1068
1069#+begin_src emacs-lisp
1070(use-package outline
5fece105
AB
1071 :hook (prog-mode . outline-minor-mode)
1072 :bind
1073 (:map
1074 outline-minor-mode-map
1075 ("<s-tab>" . outline-toggle-children)
1076 ("M-p" . outline-previous-visible-heading)
1077 ("M-n" . outline-next-visible-heading)
c5d8bb25 1078 :prefix-map a/outline-prefix-map
5fece105
AB
1079 :prefix "s-o"
1080 ("TAB" . outline-toggle-children)
1081 ("a" . outline-hide-body)
1082 ("H" . outline-hide-body)
1083 ("S" . outline-show-all)
1084 ("h" . outline-hide-subtree)
1085 ("s" . outline-show-subtree)))
1086#+end_src
1087
6ce4ebba 1088*** Dired
5fece105
AB
1089
1090#+begin_src emacs-lisp
3b8e0d03
AB
1091(use-package ls-lisp
1092 :custom (ls-lisp-dirs-first t))
1093
5fece105 1094(use-package dired
cb0c13d0 1095 :config
3b8e0d03
AB
1096 (setq dired-listing-switches "-alh"
1097 ls-lisp-use-insert-directory-program nil)
cb0c13d0
AB
1098
1099 ;; easily diff 2 marked files
1100 ;; https://oremacs.com/2017/03/18/dired-ediff/
1101 (defun dired-ediff-files ()
1102 (interactive)
6ce4ebba 1103 (require 'dired-aux)
7bd8b3a2 1104 (defvar ediff-after-quit-hook-internal)
cb0c13d0
AB
1105 (let ((files (dired-get-marked-files))
1106 (wnd (current-window-configuration)))
1107 (if (<= (length files) 2)
1108 (let ((file1 (car files))
1109 (file2 (if (cdr files)
1110 (cadr files)
1111 (read-file-name
1112 "file: "
1113 (dired-dwim-target-directory)))))
1114 (if (file-newer-than-file-p file1 file2)
1115 (ediff-files file2 file1)
1116 (ediff-files file1 file2))
1117 (add-hook 'ediff-after-quit-hook-internal
1118 (lambda ()
1119 (setq ediff-after-quit-hook-internal nil)
1120 (set-window-configuration wnd))))
1121 (error "no more than 2 files should be marked"))))
1122 :bind (:map dired-mode-map
6ce4ebba 1123 ("b" . dired-up-directory)
0884b63b
AB
1124 ("e" . dired-ediff-files)
1125 ("E" . dired-toggle-read-only)
1126 ("\\" . dired-hide-details-mode)
1127 ("z" . (lambda ()
1128 (interactive)
1129 (a/dired-start-process "zathura"))))
1130 :hook (dired-mode . dired-hide-details-mode))
6ce4ebba 1131#+end_src
5fece105 1132
6ce4ebba 1133*** Help
5fece105 1134
6ce4ebba 1135#+begin_src emacs-lisp
5fece105 1136(use-package help
5fece105
AB
1137 :config
1138 (temp-buffer-resize-mode)
1139 (setq help-window-select t))
6ce4ebba 1140#+end_src
5fece105 1141
6ce4ebba 1142*** Tramp
5fece105 1143
6ce4ebba
AB
1144#+begin_src emacs-lisp
1145(use-package tramp
5fece105 1146 :config
6ce4ebba
AB
1147 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
1148 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
1149 (add-to-list 'tramp-default-proxies-alist
1150 (list (regexp-quote (system-name)) nil nil)))
1151#+end_src
5fece105 1152
6ce4ebba
AB
1153*** Dash
1154
1155#+begin_src emacs-lisp
1156(use-package dash
1157 :config (dash-enable-font-lock))
1158#+end_src
1159
1160* Editing
1161:PROPERTIES:
1162:CUSTOM_ID: editing
1163:END:
1164
1165** =diff-hl=
1166
1167Highlight uncommitted changes in the left fringe.
1168
1169#+begin_src emacs-lisp
1170(use-package diff-hl
1171 :config
1172 (setq diff-hl-draw-borders nil)
1173 (global-diff-hl-mode)
1174 :hook (magit-post-refresh . diff-hl-magit-post-refresh))
1175#+end_src
1176
1177** ElDoc
1178
1179Display Lisp objects at point in the echo area.
1180
1181#+begin_src emacs-lisp
1182(use-package eldoc
1183 :when (version< "25" emacs-version)
1184 :config (global-eldoc-mode))
1185#+end_src
1186
1187** paren
1188
1189Highlight matching parens.
5fece105 1190
6ce4ebba 1191#+begin_src emacs-lisp
5fece105 1192(use-package paren
6ce4ebba 1193 :demand
5fece105 1194 :config (show-paren-mode))
6ce4ebba 1195#+end_src
5fece105 1196
6ce4ebba 1197** simple (for column numbers)
5fece105 1198
6ce4ebba
AB
1199#+begin_src emacs-lisp
1200(use-package simple
1201 :config (column-number-mode))
1202#+end_src
1203
1204** =savehist=
1205
1206Save minibuffer history.
5fece105 1207
6ce4ebba 1208#+begin_src emacs-lisp
5fece105
AB
1209(use-package savehist
1210 :config (savehist-mode))
6ce4ebba
AB
1211#+end_src
1212
1213** =saveplace=
5fece105 1214
6ce4ebba
AB
1215Automatically save place in each file.
1216
1217#+begin_src emacs-lisp
5fece105
AB
1218(use-package saveplace
1219 :when (version< "25" emacs-version)
1220 :config (save-place-mode))
6ce4ebba 1221#+end_src
5fece105 1222
6ce4ebba 1223** =prog-mode=
5fece105 1224
6ce4ebba
AB
1225#+begin_src emacs-lisp
1226(use-package prog-mode
1227 :config (global-prettify-symbols-mode)
1228 (defun indicate-buffer-boundaries-left ()
1229 (setq indicate-buffer-boundaries 'left))
1230 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
1231#+end_src
5fece105 1232
6ce4ebba 1233** =text-mode=
5fece105 1234
6ce4ebba
AB
1235#+begin_src emacs-lisp
1236(use-package text-mode
1237 :hook ((text-mode . indicate-buffer-boundaries-left)
1238 (text-mode . abbrev-mode)))
5fece105
AB
1239#+end_src
1240
5fece105
AB
1241** Company
1242
1243#+begin_src emacs-lisp
1244(use-package company
1245 :defer 1
1246 :bind
1247 (:map company-active-map
1248 ([tab] . company-complete-common-or-cycle)
1249 ([escape] . company-abort))
1250 :custom
1251 (company-minimum-prefix-length 1)
1252 (company-selection-wrap-around t)
1253 (company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
1254 (company-dabbrev-downcase nil)
1255 (company-dabbrev-ignore-case nil)
1256 :config
1257 (global-company-mode t))
1258#+end_src
1259
6ce4ebba 1260** Flycheck
5fece105 1261
5fece105
AB
1262#+begin_src emacs-lisp
1263(use-package flycheck
1264 :defer 3
1265 :hook (prog-mode . flycheck-mode)
1266 :bind
1267 (:map flycheck-mode-map
1268 ("M-P" . flycheck-previous-error)
1269 ("M-N" . flycheck-next-error))
1270 :config
1271 ;; Use the load-path from running Emacs when checking elisp files
1272 (setq flycheck-emacs-lisp-load-path 'inherit)
1273
1274 ;; Only flycheck when I actually save the buffer
1275 (setq flycheck-check-syntax-automatically '(mode-enabled save)))
1276
1277;; http://endlessparentheses.com/ispell-and-apostrophes.html
1278(use-package ispell
1279 :defer 3
1280 :config
1281 ;; ’ can be part of a word
1282 (setq ispell-local-dictionary-alist
1283 `((nil "[[:alpha:]]" "[^[:alpha:]]"
1284 "['\x2019]" nil ("-B") nil utf-8)))
1285 ;; don't send ’ to the subprocess
1286 (defun endless/replace-apostrophe (args)
1287 (cons (replace-regexp-in-string
1288 "’" "'" (car args))
1289 (cdr args)))
1290 (advice-add #'ispell-send-string :filter-args
1291 #'endless/replace-apostrophe)
1292
1293 ;; convert ' back to ’ from the subprocess
1294 (defun endless/replace-quote (args)
1295 (if (not (derived-mode-p 'org-mode))
1296 args
1297 (cons (replace-regexp-in-string
1298 "'" "’" (car args))
1299 (cdr args))))
1300 (advice-add #'ispell-parse-output :filter-args
1301 #'endless/replace-quote))
1302#+end_src
9678e6da 1303
5fece105 1304* Programming modes
673d5faa
AB
1305:PROPERTIES:
1306:CUSTOM_ID: programming-modes
1307:END:
5fece105 1308
6ce4ebba
AB
1309** Lisp
1310
1311#+begin_src emacs-lisp
1312(use-package lisp-mode
1313 :config
1314 (add-hook 'emacs-lisp-mode-hook 'outline-minor-mode)
1315 (add-hook 'emacs-lisp-mode-hook 'reveal-mode)
1316 (defun indent-spaces-mode ()
1317 (setq indent-tabs-mode nil))
1318 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
1319#+end_src
1320
5fece105
AB
1321** [[http://alloytools.org][Alloy]] (with [[https://github.com/dwwmmn/alloy-mode][alloy-mode]])
1322
1323#+begin_src emacs-lisp
1324(use-package alloy-mode
5fece105
AB
1325 :config (setq alloy-basic-offset 2))
1326#+end_src
1327
1328** [[https://coq.inria.fr][Coq]] (with [[https://github.com/ProofGeneral/PG][Proof General]])
1329
1330#+begin_src emacs-lisp
1331(use-package proof-site ; Proof General
5fece105
AB
1332 :load-path "lib/proof-site/generic/")
1333#+end_src
1334
1335** [[https://leanprover.github.io][Lean]] (with [[https://github.com/leanprover/lean-mode][lean-mode]])
1336
1337#+begin_src emacs-lisp
1338(eval-when-compile (defvar lean-mode-map))
1339(use-package lean-mode
1340 :defer 1
1341 :bind (:map lean-mode-map
1342 ("S-SPC" . company-complete))
1343 :config
1344 (require 'lean-input)
1345 (setq default-input-method "Lean"
1346 lean-input-tweak-all '(lean-input-compose
1347 (lean-input-prepend "/")
1348 (lean-input-nonempty))
1349 lean-input-user-translations '(("/" "/")))
1350 (lean-input-setup))
1351 #+end_src
1352
1353** Haskell
1354
1355*** [[https://github.com/haskell/haskell-mode][haskell-mode]]
1356
1357#+begin_src emacs-lisp
1358(use-package haskell-mode
5fece105
AB
1359 :config
1360 (setq haskell-indentation-layout-offset 4
1361 haskell-indentation-left-offset 4
1362 flycheck-checker 'haskell-hlint
1363 flycheck-disabled-checkers '(haskell-stack-ghc haskell-ghc)))
1364#+end_src
1365
1366*** [[https://github.com/jyp/dante][dante]]
1367
1368#+begin_src emacs-lisp
1369(use-package dante
1370 :after haskell-mode
1371 :commands dante-mode
1372 :hook (haskell-mode . dante-mode))
1373#+end_src
1374
1375*** [[https://github.com/mpickering/hlint-refactor-mode][hlint-refactor]]
1376
1377Emacs bindings for [[https://github.com/ndmitchell/hlint][hlint]]'s refactor option. This requires the refact
1378executable from [[https://github.com/mpickering/apply-refact][apply-refact]].
1379
1380#+begin_src emacs-lisp
1381(use-package hlint-refactor
1382 :after haskell-mode
1383 :bind (:map hlint-refactor-mode-map
1384 ("C-c l b" . hlint-refactor-refactor-buffer)
1385 ("C-c l r" . hlint-refactor-refactor-at-point))
1386 :hook (haskell-mode . hlint-refactor-mode))
1387#+end_src
1388
1389*** [[https://github.com/flycheck/flycheck-haskell][flycheck-haskell]]
1390
1391#+begin_src emacs-lisp
1392(use-package flycheck-haskell
1393 :after haskell-mode)
1394#+end_src
1395
1396*** [[https://github.com/ndmitchell/hlint/blob/20e116a043f2073c57b17b24ae6364b5e433ba7e/data/hs-lint.el][hs-lint.el]]
1397:PROPERTIES:
1398:header-args+: :tangle lisp/hs-lint.el :mkdirp yes
1399:END:
1400
1401Currently using =flycheck-haskell= with the =haskell-hlint= checker
1402instead.
1403
1404#+begin_src emacs-lisp :tangle no
1405;;; hs-lint.el --- minor mode for HLint code checking
1406
1407;; Copyright 2009 (C) Alex Ott
1408;;
1409;; Author: Alex Ott <alexott@gmail.com>
1410;; Keywords: haskell, lint, HLint
1411;; Requirements:
1412;; Status: distributed under terms of GPL2 or above
1413
1414;; Typical message from HLint looks like:
1415;;
1416;; /Users/ott/projects/lang-exp/haskell/test.hs:52:1: Eta reduce
1417;; Found:
1418;; count1 p l = length (filter p l)
1419;; Why not:
1420;; count1 p = length . filter p
1421
1422
1423(require 'compile)
1424
1425(defgroup hs-lint nil
1426 "Run HLint as inferior of Emacs, parse error messages."
1427 :group 'tools
1428 :group 'haskell)
1429
1430(defcustom hs-lint-command "hlint"
1431 "The default hs-lint command for \\[hlint]."
1432 :type 'string
1433 :group 'hs-lint)
1434
1435(defcustom hs-lint-save-files t
1436 "Save modified files when run HLint or no (ask user)"
1437 :type 'boolean
1438 :group 'hs-lint)
1439
1440(defcustom hs-lint-replace-with-suggestions nil
1441 "Replace user's code with suggested replacements"
1442 :type 'boolean
1443 :group 'hs-lint)
1444
1445(defcustom hs-lint-replace-without-ask nil
1446 "Replace user's code with suggested replacements automatically"
1447 :type 'boolean
1448 :group 'hs-lint)
1449
1450(defun hs-lint-process-setup ()
1451 "Setup compilation variables and buffer for `hlint'."
1452 (run-hooks 'hs-lint-setup-hook))
1453
1454;; regex for replace suggestions
1455;;
1456;; ^\(.*?\):\([0-9]+\):\([0-9]+\): .*
1457;; Found:
1458;; \s +\(.*\)
1459;; Why not:
1460;; \s +\(.*\)
1461
1462(defvar hs-lint-regex
1463 "^\\(.*?\\):\\([0-9]+\\):\\([0-9]+\\): .*[\n\C-m]Found:[\n\C-m]\\s +\\(.*\\)[\n\C-m]Why not:[\n\C-m]\\s +\\(.*\\)[\n\C-m]"
1464 "Regex for HLint messages")
1465
1466(defun make-short-string (str maxlen)
1467 (if (< (length str) maxlen)
1468 str
1469 (concat (substring str 0 (- maxlen 3)) "...")))
1470
1471(defun hs-lint-replace-suggestions ()
1472 "Perform actual replacement of suggestions"
1473 (goto-char (point-min))
1474 (while (re-search-forward hs-lint-regex nil t)
1475 (let* ((fname (match-string 1))
1476 (fline (string-to-number (match-string 2)))
1477 (old-code (match-string 4))
1478 (new-code (match-string 5))
1479 (msg (concat "Replace '" (make-short-string old-code 30)
1480 "' with '" (make-short-string new-code 30) "'"))
1481 (bline 0)
1482 (eline 0)
1483 (spos 0)
1484 (new-old-code ""))
1485 (save-excursion
1486 (switch-to-buffer (get-file-buffer fname))
1487 (goto-char (point-min))
1488 (forward-line (1- fline))
1489 (beginning-of-line)
1490 (setf bline (point))
1491 (when (or hs-lint-replace-without-ask
1492 (yes-or-no-p msg))
1493 (end-of-line)
1494 (setf eline (point))
1495 (beginning-of-line)
1496 (setf old-code (regexp-quote old-code))
1497 (while (string-match "\\\\ " old-code spos)
1498 (setf new-old-code (concat new-old-code
1499 (substring old-code spos (match-beginning 0))
1500 "\\ *"))
1501 (setf spos (match-end 0)))
1502 (setf new-old-code (concat new-old-code (substring old-code spos)))
1503 (remove-text-properties bline eline '(composition nil))
1504 (when (re-search-forward new-old-code eline t)
1505 (replace-match new-code nil t)))))))
1506
1507(defun hs-lint-finish-hook (buf msg)
1508 "Function, that is executed at the end of HLint execution"
1509 (if hs-lint-replace-with-suggestions
1510 (hs-lint-replace-suggestions)
1511 (next-error 1 t)))
1512
1513(define-compilation-mode hs-lint-mode "HLint"
1514 "Mode for check Haskell source code."
1515 (set (make-local-variable 'compilation-process-setup-function)
1516 'hs-lint-process-setup)
1517 (set (make-local-variable 'compilation-disable-input) t)
1518 (set (make-local-variable 'compilation-scroll-output) nil)
1519 (set (make-local-variable 'compilation-finish-functions)
1520 (list 'hs-lint-finish-hook))
1521 )
1522
1523(defun hs-lint ()
1524 "Run HLint for current buffer with haskell source"
1525 (interactive)
1526 (save-some-buffers hs-lint-save-files)
1527 (compilation-start (concat hs-lint-command " \"" buffer-file-name "\"")
1528 'hs-lint-mode))
1529
1530(provide 'hs-lint)
1531;;; hs-lint.el ends here
1532#+end_src
1533
1534#+begin_src emacs-lisp :tangle no
1535(use-package hs-lint
1536 :load-path "lisp/"
1537 :bind (:map haskell-mode-map
1538 ("C-c l l" . hs-lint)))
1539#+end_src
1540
6ce4ebba 1541** Web
5fece105
AB
1542
1543*** SGML and HTML
1544
1545#+begin_src emacs-lisp
1546(use-package sgml-mode
5fece105
AB
1547 :config
1548 (setq sgml-basic-offset 2))
1549#+end_src
1550
1551*** CSS and SCSS
1552
1553#+begin_src emacs-lisp
1554(use-package css-mode
5fece105
AB
1555 :config
1556 (setq css-indent-offset 2))
1557#+end_src
1558
1559*** Web mode
1560
1561#+begin_src emacs-lisp
1562(use-package web-mode
5fece105
AB
1563 :mode "\\.html\\'"
1564 :config
c5d8bb25 1565 (a/setq-every 2
5fece105
AB
1566 web-mode-code-indent-offset
1567 web-mode-css-indent-offset
1568 web-mode-markup-indent-offset))
1569#+end_src
1570
1571*** Emmet mode
1572
1573#+begin_src emacs-lisp
1574(use-package emmet-mode
1575 :after (:any web-mode css-mode sgml-mode)
1576 :bind* (("C-)" . emmet-next-edit-point)
1577 ("C-(" . emmet-prev-edit-point))
1578 :config
1579 (unbind-key "C-j" emmet-mode-keymap)
1580 (setq emmet-move-cursor-between-quotes t)
1581 :hook (web-mode css-mode html-mode sgml-mode))
1582#+end_src
1583
9cebbd53 1584** COMMENT Java
5fece105
AB
1585
1586*** meghanada
1587
9cebbd53 1588#+begin_src emacs-lisp
5fece105
AB
1589(use-package meghanada
1590 :bind
1591 (:map meghanada-mode-map
1592 (("C-M-o" . meghanada-optimize-import)
1593 ("C-M-t" . meghanada-import-all)))
1594 :hook (java-mode . meghanada-mode))
1595#+end_src
1596
1597*** lsp-java
1598
1599#+begin_comment
1600dependencies:
1601
1602ace-window
1603avy
1604bui
1605company-lsp
1606dap-mode
1607lsp-java
1608lsp-mode
1609lsp-ui
1610pfuture
1611tree-mode
1612treemacs
1613#+end_comment
1614
9cebbd53 1615#+begin_src emacs-lisp
5fece105
AB
1616(use-package treemacs
1617 :config (setq treemacs-never-persist t))
1618
1619(use-package yasnippet
1620 :config
1621 ;; (yas-global-mode)
1622 )
1623
1624(use-package lsp-mode
1625 :init (setq lsp-eldoc-render-all nil
1626 lsp-highlight-symbol-at-point nil)
1627 )
1628
1629(use-package hydra)
1630
1631(use-package company-lsp
1632 :after company
1633 :config
1634 (setq company-lsp-cache-candidates t
1635 company-lsp-async t))
1636
1637(use-package lsp-ui
1638 :config
1639 (setq lsp-ui-sideline-update-mode 'point))
1640
1641(use-package lsp-java
1642 :config
1643 (add-hook 'java-mode-hook
1644 (lambda ()
1645 (setq-local company-backends (list 'company-lsp))))
1646
1647 (add-hook 'java-mode-hook 'lsp-java-enable)
1648 (add-hook 'java-mode-hook 'flycheck-mode)
1649 (add-hook 'java-mode-hook 'company-mode)
1650 (add-hook 'java-mode-hook 'lsp-ui-mode))
1651
1652(use-package dap-mode
1653 :after lsp-mode
1654 :config
1655 (dap-mode t)
1656 (dap-ui-mode t))
1657
1658(use-package dap-java
1659 :after (lsp-java))
1660
1661(use-package lsp-java-treemacs
1662 :after (treemacs))
1663#+end_src
1664
5492a3dc
AB
1665** geiser
1666
1667#+begin_src emacs-lisp
1668(use-package geiser)
1669
1670(use-package geiser-guile
1671 :config
1672 (setq geiser-guile-load-path "~/src/git/guix"))
1673#+end_src
1674
1675** guix
1676
1677#+begin_src emacs-lisp
1678(use-package guix
1679 :load-path "lib/guix/elisp")
1680#+end_src
1681
673d5faa
AB
1682* Emacs enhancements
1683:PROPERTIES:
1684:CUSTOM_ID: emacs-enhancements
1685:END:
5fece105 1686
6ce4ebba
AB
1687** man
1688
1689#+begin_src emacs-lisp
1690(use-package man
1691 :config (setq Man-width 80))
1692#+end_src
1693
5fece105
AB
1694** [[https://github.com/justbur/emacs-which-key][which-key]]
1695
1696#+begin_quote
1697Emacs package that displays available keybindings in popup
1698#+end_quote
1699
1700#+begin_src emacs-lisp
1701(use-package which-key
1702 :defer 1
169947ac
AB
1703 :config
1704 (which-key-add-key-based-replacements
1705 ;; prefixes for global prefixes and minor modes
1706 "C-c @" "outline"
1707 "C-c !" "flycheck"
1708 "C-c 8" "typo"
1709 "C-c 8 -" "typo/dashes"
1710 "C-c 8 <" "typo/left-brackets"
1711 "C-c 8 >" "typo/right-brackets"
1712 "C-x 8" "unicode"
1713 "C-x a" "abbrev/expand"
1714 "C-x r" "rectangle/register/bookmark"
1715 "C-x v" "version control"
1716 ;; prefixes for my personal bindings
1717 "C-c a" "applications"
1718 "C-c a s" "shells"
1719 "C-c b" "borg"
1720 "C-c c" "compile-and-comments"
1721 "C-c e" "eval"
1722 "C-c f" "files"
1723 "C-c F" "frames"
1724 "C-S-h" "help(ful)"
1725 "C-c m" "multiple-cursors"
1726 "C-c p" "projectile"
1727 "C-c p s" "projectile/search"
1728 "C-c p x" "projectile/execute"
1729 "C-c p 4" "projectile/other-window"
1730 "C-c q" "boxquote"
1731 "s-g" "magit"
1732 "s-o" "outline"
1733 "s-t" "themes")
1734
1735 ;; prefixes for major modes
1736 (which-key-add-major-mode-key-based-replacements 'message-mode
1737 "C-c f" "footnote")
1738 (which-key-add-major-mode-key-based-replacements 'org-mode
1739 "C-c C-v" "org-babel")
1740 (which-key-add-major-mode-key-based-replacements 'web-mode
1741 "C-c C-a" "web/attributes"
1742 "C-c C-b" "web/blocks"
1743 "C-c C-d" "web/dom"
1744 "C-c C-e" "web/element"
1745 "C-c C-t" "web/tags")
1746
1747 (which-key-mode))
5fece105
AB
1748#+end_src
1749
1750** theme
1751
1752#+begin_src emacs-lisp
1753(add-to-list 'custom-theme-load-path "~/.emacs.d/lisp")
1754(load-theme 'tangomod t)
1755#+end_src
1756
21ad71fa 1757** smart-mode-line
5fece105
AB
1758
1759#+begin_src emacs-lisp
21ad71fa 1760(use-package smart-mode-line
6ce4ebba 1761 :demand
21ad71fa
AB
1762 :config
1763 (sml/setup))
5fece105
AB
1764#+end_src
1765
1766** doom-themes
1767
1768#+begin_src emacs-lisp
1769(use-package doom-themes)
1770#+end_src
1771
1772** theme helper functions
1773
1774#+begin_src emacs-lisp
c5d8bb25 1775(defun a/lights-on ()
5fece105
AB
1776 "Enable my favourite light theme."
1777 (interactive)
21ad71fa
AB
1778 (mapc #'disable-theme custom-enabled-themes)
1779 (load-theme 'tangomod t)
1780 (sml/apply-theme 'automatic))
5fece105 1781
c5d8bb25 1782(defun a/lights-off ()
5fece105
AB
1783 "Go dark."
1784 (interactive)
21ad71fa
AB
1785 (mapc #'disable-theme custom-enabled-themes)
1786 (load-theme 'doom-tomorrow-night t)
1787 (sml/apply-theme 'automatic))
5fece105
AB
1788
1789(bind-keys
c5d8bb25
AB
1790 ("s-t d" . a/lights-off)
1791 ("s-t l" . a/lights-on))
5fece105
AB
1792#+end_src
1793
1794** [[https://github.com/bbatsov/crux][crux]]
1795
1796#+begin_src emacs-lisp
1797(use-package crux
1798 :defer 1
1799 :bind (("C-c b k" . crux-kill-other-buffers)
1800 ("C-c d" . crux-duplicate-current-line-or-region)
1801 ("C-c D" . crux-duplicate-and-comment-current-line-or-region)
1802 ("C-c f c" . crux-copy-file-preserve-attributes)
1803 ("C-c f d" . crux-delete-file-and-buffer)
1804 ("C-c f r" . crux-rename-file-and-buffer)
1805 ("C-c j" . crux-top-join-line)
1806 ("C-S-j" . crux-top-join-line)))
1807#+end_src
1808
1809** [[https://github.com/alezost/mwim.el][mwim]]
1810
1811#+begin_src emacs-lisp
1812(use-package mwim
1813 :bind (("C-a" . mwim-beginning-of-code-or-line)
1814 ("C-e" . mwim-end-of-code-or-line)
1815 ("<home>" . mwim-beginning-of-line-or-code)
1816 ("<end>" . mwim-end-of-line-or-code)))
1817#+end_src
1818
1819** projectile
1820
1821#+begin_src emacs-lisp
1822(use-package projectile
5fece105
AB
1823 :bind-keymap ("C-c p" . projectile-command-map)
1824 :config
1825 (projectile-mode)
1826
1827 (defun my-projectile-invalidate-cache (&rest _args)
1828 ;; ignore the args to `magit-checkout'
1829 (projectile-invalidate-cache nil))
1830
1831 (eval-after-load 'magit-branch
1832 '(progn
1833 (advice-add 'magit-checkout
1834 :after #'my-projectile-invalidate-cache)
1835 (advice-add 'magit-branch-and-checkout
c371adda
AB
1836 :after #'my-projectile-invalidate-cache)))
1837 :custom (projectile-completion-system 'ivy))
5fece105
AB
1838#+end_src
1839
1840** [[https://github.com/Wilfred/helpful][helpful]]
1841
1842#+begin_src emacs-lisp
1843(use-package helpful
1844 :defer 1
1845 :bind
1846 (("C-S-h c" . helpful-command)
1847 ("C-S-h f" . helpful-callable) ; helpful-function
1848 ("C-S-h v" . helpful-variable)
1849 ("C-S-h k" . helpful-key)
1850 ("C-S-h p" . helpful-at-point)))
1851#+end_src
1852
5fece105
AB
1853** [[https://github.com/EricCrosson/unkillable-scratch][unkillable-scratch]]
1854
1855Make =*scratch*= and =*Messages*= unkillable.
1856
1857#+begin_src emacs-lisp
1858(use-package unkillable-scratch
1859 :defer 3
1860 :config
1861 (unkillable-scratch 1)
1862 :custom
1863 (unkillable-scratch-behavior 'do-nothing)
1864 (unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$")))
1865#+end_src
1866
1867** [[https://github.com/davep/boxquote.el][boxquote.el]]
1868
1869#+begin_example
1870,----
1871| make pretty boxed quotes like this
1872`----
1873#+end_example
1874
1875#+begin_src emacs-lisp
1876(use-package boxquote
1877 :defer 3
1878 :bind
c5d8bb25 1879 (:prefix-map a/boxquote-prefix-map
5fece105
AB
1880 :prefix "C-c q"
1881 ("b" . boxquote-buffer)
1882 ("B" . boxquote-insert-buffer)
1883 ("d" . boxquote-defun)
1884 ("F" . boxquote-insert-file)
1885 ("hf" . boxquote-describe-function)
1886 ("hk" . boxquote-describe-key)
1887 ("hv" . boxquote-describe-variable)
1888 ("hw" . boxquote-where-is)
1889 ("k" . boxquote-kill)
1890 ("p" . boxquote-paragraph)
1891 ("q" . boxquote-boxquote)
1892 ("r" . boxquote-region)
1893 ("s" . boxquote-shell-command)
1894 ("t" . boxquote-text)
1895 ("T" . boxquote-title)
1896 ("u" . boxquote-unbox)
1897 ("U" . boxquote-unbox-region)
1898 ("y" . boxquote-yank)
1899 ("M-q" . boxquote-fill-paragraph)
1900 ("M-w" . boxquote-kill-ring-save)))
1901#+end_src
1902
1903Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]].
1904
6ce4ebba
AB
1905** orgalist
1906
1907#+begin_src emacs-lisp
1908(use-package orgalist
1909 :after message
1910 :hook (message-mode . orgalist-mode))
1911#+end_src
1912
5fece105
AB
1913** typo.el
1914
1915#+begin_src emacs-lisp
1916(use-package typo
1917 :defer 2
1918 :config
1919 (typo-global-mode 1)
1920 :hook (text-mode . typo-mode))
1921#+end_src
1922
1923** hl-todo
1924
1925#+begin_src emacs-lisp
1926(use-package hl-todo
1927 :defer 4
1928 :config
1929 (global-hl-todo-mode))
1930#+end_src
1931
1932** shrink-path
1933
1934#+begin_src emacs-lisp
1935(use-package shrink-path
6ce4ebba 1936 :defer 2
5fece105
AB
1937 :after eshell
1938 :config
5fece105
AB
1939 (defun +eshell/prompt ()
1940 (let ((base/dir (shrink-path-prompt default-directory)))
1941 (concat (propertize (car base/dir)
1942 'face 'font-lock-comment-face)
1943 (propertize (cdr base/dir)
1944 'face 'font-lock-constant-face)
1945 (propertize (+eshell--current-git-branch)
1946 'face 'font-lock-function-name-face)
1947 "\n"
1948 (propertize "λ" 'face 'eshell-prompt-face)
1949 ;; needed for the input text to not have prompt face
1950 (propertize " " 'face 'default))))
1951
1952 (defun +eshell--current-git-branch ()
1953 (let ((branch (car (loop for match in (split-string (shell-command-to-string "git branch") "\n")
1954 when (string-match "^\*" match)
1955 collect match))))
1956 (if (not (eq branch nil))
1957 (concat " " (substring branch 2))
6ce4ebba
AB
1958 "")))
1959 (setq eshell-prompt-regexp "\\(.*\n\\)*λ "
1960 eshell-prompt-function #'+eshell/prompt))
5fece105
AB
1961#+end_src
1962
5fece105
AB
1963** [[https://github.com/peterwvj/eshell-up][eshell-up]]
1964
1965#+begin_src emacs-lisp
1966(use-package eshell-up
6ce4ebba
AB
1967 :after eshell
1968 :commands eshell-up)
5fece105
AB
1969#+end_src
1970
1971** multi-term
1972
1973#+begin_src emacs-lisp
1974(use-package multi-term
1975 :defer 1
169947ac 1976 :bind (("C-c a s m" . multi-term-dedicated-toggle)
a219024e
AB
1977 :map term-mode-map
1978 ("C-c C-j" . term-char-mode)
1979 :map term-raw-map
1980 ("C-c C-j" . term-line-mode))
5fece105
AB
1981 :config
1982 (setq multi-term-program "/bin/screen"
1983 ;; TODO: add separate bindings for connecting to existing
1984 ;; session vs. always creating a new one
1985 multi-term-dedicated-select-after-open-p t
1986 multi-term-dedicated-window-height 20
1987 multi-term-dedicated-max-window-height 30
1988 term-bind-key-alist
1989 '(("C-c C-c" . term-interrupt-subjob)
1990 ("C-c C-e" . term-send-esc)
1991 ("C-k" . kill-line)
1992 ("C-y" . term-paste)
1993 ("M-f" . term-send-forward-word)
1994 ("M-b" . term-send-backward-word)
1995 ("M-p" . term-send-up)
1996 ("M-n" . term-send-down)
1997 ("<C-backspace>" . term-send-backward-kill-word)
1998 ("<M-DEL>" . term-send-backward-kill-word)
1999 ("M-d" . term-send-delete-word)
2000 ("M-," . term-send-raw)
2001 ("M-." . comint-dynamic-complete))
2002 term-unbind-key-alist
2003 '("C-z" "C-x" "C-c" "C-h" "C-y" "<ESC>")))
2004#+end_src
2005
2006** page-break-lines
2007
2008#+begin_src emacs-lisp
2009(use-package page-break-lines
2010 :config
2011 (global-page-break-lines-mode))
2012#+end_src
2013
f2a57944
AB
2014** expand-region
2015
2016#+begin_src emacs-lisp
2017(use-package expand-region
2018 :bind ("C-=" . er/expand-region))
2019#+end_src
2020
64e429b5
AB
2021** multiple-cursors
2022
2023#+begin_src emacs-lisp
2024(use-package multiple-cursors
1bbc615c
AB
2025 :bind
2026 (("C-S-<mouse-1>" . mc/add-cursor-on-click)
2027 (:prefix-map a/mc-prefix-map
2028 :prefix "C-c m"
2029 ("c" . mc/edit-lines)
2030 ("n" . mc/mark-next-like-this)
2031 ("p" . mc/mark-previous-like-this)
2032 ("a" . mc/mark-all-like-this))))
64e429b5 2033#+end_src
0884b63b 2034
5fece105 2035* Email
673d5faa
AB
2036:PROPERTIES:
2037:CUSTOM_ID: email
2038:END:
5fece105 2039
5fece105 2040#+begin_src emacs-lisp
c5d8bb25 2041(defvar a/maildir (expand-file-name "~/mail/"))
ab6781dd 2042(with-eval-after-load 'recentf
c5d8bb25 2043 (add-to-list 'recentf-exclude a/maildir))
5fece105
AB
2044#+end_src
2045
2046** Gnus
2047
2048#+begin_src emacs-lisp
2049(setq
c5d8bb25
AB
2050 a/gnus-init-file (no-littering-expand-etc-file-name "gnus")
2051 mail-user-agent 'gnus-user-agent
2052 read-mail-command 'gnus)
5fece105
AB
2053
2054(use-package gnus
1bbc615c 2055 :bind (("s-m" . gnus)
a0801748 2056 ("s-M" . gnus-unplugged))
5fece105
AB
2057 :init
2058 (setq
2059 gnus-select-method '(nnnil "")
2060 gnus-secondary-select-methods
2061 '((nnimap "amin"
2062 (nnimap-stream plain)
2063 (nnimap-address "127.0.0.1")
2064 (nnimap-server-port 143)
2065 (nnimap-authenticator plain)
2066 (nnimap-user "amin@aminb.org"))
2067 (nnimap "uwaterloo"
2068 (nnimap-stream plain)
2069 (nnimap-address "127.0.0.1")
2070 (nnimap-server-port 143)
2071 (nnimap-authenticator plain)
2072 (nnimap-user "abandali@uwaterloo.ca")))
2073 gnus-message-archive-group "nnimap+amin:Sent"
2074 gnus-parameters
2075 '(("gnu.*"
2076 (gcc-self . t)))
2077 gnus-large-newsgroup 50
2078 gnus-home-directory (no-littering-expand-var-file-name "gnus/")
2079 gnus-directory (concat gnus-home-directory "news/")
2080 message-directory (concat gnus-home-directory "mail/")
2081 nndraft-directory (concat gnus-home-directory "drafts/")
2082 gnus-save-newsrc-file nil
2083 gnus-read-newsrc-file nil
2084 gnus-interactive-exit nil
2085 gnus-gcc-mark-as-read t))
2086
2087(use-package gnus-art
2088 :config
2089 (setq
2090 gnus-visible-headers
2091 (concat gnus-visible-headers "\\|^List-Id:\\|^X-RT-Originator:\\|^User-Agent:")
2092 gnus-sorted-header-list
2093 '("^From:" "^Subject:" "^Summary:" "^Keywords:"
2094 "^Followup-To:" "^To:" "^Cc:" "X-RT-Originator"
2095 "^Newsgroups:" "List-Id:" "^Organization:"
2096 "^User-Agent:" "^Date:")
2097 ;; local-lapsed article dates
2098 ;; from https://www.emacswiki.org/emacs/GnusFormatting#toc11
2099 gnus-article-date-headers '(user-defined)
2100 gnus-article-time-format
2101 (lambda (time)
2102 (let* ((date (format-time-string "%a, %d %b %Y %T %z" time))
2103 (local (article-make-date-line date 'local))
2104 (combined-lapsed (article-make-date-line date
2105 'combined-lapsed))
2106 (lapsed (progn
2107 (string-match " (.+" combined-lapsed)
2108 (match-string 0 combined-lapsed))))
2109 (concat local lapsed))))
2110 (bind-keys
2111 :map gnus-article-mode-map
2112 ("r" . gnus-article-reply-with-original)
2113 ("R" . gnus-article-wide-reply-with-original)
2114 ("M-L" . org-store-link)))
2115
2116(use-package gnus-sum
2117 :bind (:map gnus-summary-mode-map
c5d8bb25 2118 :prefix-map a/gnus-summary-prefix-map
5fece105
AB
2119 :prefix "v"
2120 ("r" . gnus-summary-reply)
2121 ("w" . gnus-summary-wide-reply)
2122 ("v" . gnus-summary-show-raw-article))
2123 :config
2124 (bind-keys
2125 :map gnus-summary-mode-map
2126 ("r" . gnus-summary-reply-with-original)
2127 ("R" . gnus-summary-wide-reply-with-original)
2128 ("M-L" . org-store-link))
c5d8bb25 2129 :hook (gnus-summary-mode . a/no-mouse-autoselect-window))
5fece105
AB
2130
2131(use-package gnus-msg
2132 :config
2133 (setq gnus-posting-styles
2134 '((".*"
2135 (address "amin@aminb.org")
2136 (body "\nBest,\namin\n")
c5d8bb25 2137 (eval (setq a/message-cite-say-hi t)))
5fece105
AB
2138 ("gnu.*"
2139 (address "bandali@gnu.org"))
2140 ((header "subject" "ThankCRM")
2141 (to "webmasters-comment@gnu.org")
2142 (body "\nAdded to 2018supporters.html.\n\nMoving to campaigns.\n\n-amin\n")
c5d8bb25 2143 (eval (setq a/message-cite-say-hi nil)))
5fece105
AB
2144 ("nnimap\\+uwaterloo:.*"
2145 (address "abandali@uwaterloo.ca")
2146 (gcc "\"nnimap+uwaterloo:Sent Items\"")))))
2147
2148(use-package gnus-topic
2149 :hook (gnus-group-mode . gnus-topic-mode))
2150
2151(use-package gnus-agent
2152 :config
2153 (setq gnus-agent-synchronize-flags 'ask)
2154 :hook (gnus-group-mode . gnus-agent-mode))
2155
2156(use-package gnus-group
2157 :config
2158 (setq gnus-permanently-visible-groups "\\((INBOX\\|gnu$\\)"))
2159
2160(use-package mm-decode
2161 :config
2162 (setq mm-discouraged-alternatives '("text/html" "text/richtext")))
2163#+end_src
2164
2165** sendmail
2166
2167#+begin_src emacs-lisp
2168(use-package sendmail
2169 :config
2170 (setq sendmail-program "/usr/bin/msmtp"
2171 ;; message-sendmail-extra-arguments '("-v" "-d")
2172 mail-specify-envelope-from t
2173 mail-envelope-from 'header))
2174#+end_src
2175
2176** message
2177
2178#+begin_src emacs-lisp
2179(use-package message
2180 :config
c5d8bb25 2181 (defconst a/message-cite-style-format "On %Y-%m-%d %l:%M %p, %N wrote:")
5fece105
AB
2182 (defconst message-cite-style-bandali
2183 '((message-cite-function 'message-cite-original)
2184 (message-citation-line-function 'message-insert-formatted-citation-line)
2185 (message-cite-reply-position 'traditional)
2186 (message-yank-prefix "> ")
2187 (message-yank-cited-prefix ">")
2188 (message-yank-empty-prefix ">")
2189 (message-citation-line-format
c5d8bb25
AB
2190 (if a/message-cite-say-hi
2191 (concat "Hi %F,\n\n" a/message-cite-style-format)
2192 a/message-cite-style-format)))
5fece105
AB
2193 "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.")
2194 (setq message-cite-style 'message-cite-style-bandali
2195 message-kill-buffer-on-exit t
2196 message-send-mail-function 'message-send-mail-with-sendmail
2197 message-sendmail-envelope-from 'header
2198 message-dont-reply-to-names
2199 "\\(\\(.*@aminb\\.org\\)\\|\\(amin@bandali\\.me\\)\\|\\(\\(aminb?\\|mab\\|bandali\\)@gnu\\.org\\)\\|\\(\\(m\\|a\\(min\\.\\)?\\)bandali@uwaterloo\\.ca\\)\\)"
2200 message-user-fqdn "aminb.org")
2201 :hook (;; (message-setup . mml-secure-message-sign-pgpmime)
2202 (message-mode . flyspell-mode)
2203 (message-mode . (lambda ()
2204 ;; (setq fill-column 65
2205 ;; message-fill-column 65)
2206 (make-local-variable 'company-idle-delay)
2207 (setq company-idle-delay 0.2))))
2208 ;; :custom-face
2209 ;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
2210 ;; (message-header-to ((t (:foreground "#111" :weight normal))))
2211 ;; (message-header-cc ((t (:foreground "#333" :weight normal))))
2212 )
2213
ab6781dd 2214(with-eval-after-load 'mml-sec
5fece105
AB
2215 (setq mml-secure-openpgp-encrypt-to-self t
2216 mml-secure-openpgp-sign-with-sender t))
2217#+end_src
2218
2219** footnote
2220
2221Convenient footnotes in =message-mode=.
2222
2223#+begin_src emacs-lisp
2224(use-package footnote
2225 :after message
2226 :bind
2227 (:map message-mode-map
c5d8bb25 2228 :prefix-map a/footnote-prefix-map
5fece105
AB
2229 :prefix "C-c f"
2230 ("a" . footnote-add-footnote)
2231 ("b" . footnote-back-to-message)
2232 ("c" . footnote-cycle-style)
2233 ("d" . footnote-delete-footnote)
2234 ("g" . footnote-goto-footnote)
2235 ("r" . footnote-renumber-footnotes)
2236 ("s" . footnote-set-style))
2237 :config
2238 (setq footnote-start-tag ""
2239 footnote-end-tag ""
2240 footnote-style 'unicode))
2241#+end_src
2242
490554d3
AB
2243** ebdb
2244
2245#+begin_src emacs-lisp
2246(use-package ebdb
dfd86f53 2247 :defer 2
6ce4ebba 2248 :after gnus
490554d3
AB
2249 :bind (:map gnus-group-mode-map ("e" . ebdb))
2250 :config
2251 (setq ebdb-sources (no-littering-expand-var-file-name "ebdb"))
ab6781dd 2252 (with-eval-after-load 'swiper
490554d3
AB
2253 (add-to-list 'swiper-font-lock-exclude 'ebdb-mode t)))
2254
2255(use-package ebdb-com
2256 :after ebdb)
2257
2258;; (use-package ebdb-complete
2259;; :after ebdb
2260;; :config
2261;; (ebdb-complete-enable))
2262
2263(use-package company-ebdb
dfd86f53 2264 :defer 2
490554d3 2265 :config
dfd86f53 2266 (defun company-ebdb--post-complete (_) nil))
490554d3
AB
2267
2268(use-package ebdb-gnus
dfd86f53 2269 :defer 3
490554d3
AB
2270 :after ebdb
2271 :custom
2272 (ebdb-gnus-window-configuration
2273 '(article
2274 (vertical 1.0
2275 (summary 0.25 point)
2276 (horizontal 1.0
2277 (article 1.0)
2278 (ebdb-gnus 0.3))))))
2279
2280(use-package ebdb-mua
dfd86f53 2281 :defer 3
490554d3
AB
2282 :after ebdb
2283 ;; :custom (ebdb-mua-pop-up nil)
2284 )
2285
2286;; (use-package ebdb-message
2287;; :after ebdb)
2288
2289
2290;; (use-package ebdb-vcard
2291;; :after ebdb)
2292#+end_src
2293
9cebbd53 2294** COMMENT message-x
5fece105
AB
2295
2296#+begin_src emacs-lisp
2297(use-package message-x
5fece105
AB
2298 :custom
2299 (message-x-completion-alist
2300 (quote
2301 (("\\([rR]esent-\\|[rR]eply-\\)?[tT]o:\\|[bB]?[cC][cC]:" . gnus-harvest-find-address)
2302 ((if
2303 (boundp
2304 (quote message-newgroups-header-regexp))
2305 message-newgroups-header-regexp message-newsgroups-header-regexp)
2306 . message-expand-group)))))
2307#+end_src
2308
9cebbd53 2309** COMMENT gnus-harvest
5fece105
AB
2310
2311#+begin_src emacs-lisp
2312(use-package gnus-harvest
5fece105
AB
2313 :commands gnus-harvest-install
2314 :demand t
2315 :config
2316 (if (featurep 'message-x)
2317 (gnus-harvest-install 'message-x)
2318 (gnus-harvest-install)))
2319#+end_src
2320
2321* Blogging
673d5faa
AB
2322:PROPERTIES:
2323:CUSTOM_ID: blogging
2324:END:
5fece105 2325
5fece105
AB
2326** [[https://ox-hugo.scripter.co][ox-hugo]]
2327
2328#+begin_src emacs-lisp
2329(use-package ox-hugo
2330 :after ox)
2331
2332(use-package ox-hugo-auto-export
2333 :load-path "lib/ox-hugo")
2334#+end_src
2335
2336* Post initialization
2337:PROPERTIES:
2338:CUSTOM_ID: post-initialization
2339:END:
2340
5fece105
AB
2341Display how long it took to load the init file.
2342
2343#+begin_src emacs-lisp
2344(message "Loading %s...done (%.3fs)" user-init-file
2345 (float-time (time-subtract (current-time)
c5d8bb25 2346 a/before-user-init-time)))
5fece105
AB
2347#+end_src
2348
2349* Footer
2350:PROPERTIES:
2351:CUSTOM_ID: footer
2352:END:
2353
2354#+begin_src emacs-lisp :comments none
2355;;; init.el ends here
2356#+end_src
2357
2358* COMMENT Local Variables :ARCHIVE:
2359# Local Variables:
c5d8bb25 2360# eval: (add-hook 'after-save-hook #'a/async-babel-tangle 'append 'local)
6ce4ebba 2361# eval: (when (featurep 'typo (typo-mode -1)))
5fece105 2362# End: