1 #+title: =aminb='s Literate Emacs Configuration
4 #+property: header-args :tangle yes
11 This org file is my literate configuration for GNU Emacs, and is
12 tangled 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
14 many different people. Some of the configurations that I can remember
15 off the top of my head are:
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
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]]
28 I'd like to have a fully reproducible Emacs setup (part of the reason
29 why I store my configuration in this repository) but unfortunately out
30 of the box, that's not achievable with =package.el=, not currently
31 anyway. So, I've opted to use Borg. For what it's worth, I briefly
32 experimented with [[https://github.com/raxod502/straight.el][straight.el]], but found that it added about 2 seconds
33 to my init time; which is unacceptable for me: I use Emacs as my
34 window manager (via EXWM) and coming from bspwm, I'm too used to
35 having fast startup times.
39 To use this config for your Emacs, first you need to clone this repo,
40 then bootstrap Borg, tell Borg to retrieve package submodules, and
41 byte-compiled the packages. Something along these lines should work:
43 #+begin_src sh :tangle no
44 git clone https://github.com/aminb/dotfiles ~/.emacs.d
52 * Contents :toc_1:noexport:
56 - [[#initial-setup][Initial setup]]
58 - [[#post-initialization][Post initialization]]
68 #+begin_src emacs-lisp :comments none
69 ;;; init.el --- Amin Bandali's Emacs config -*- lexical-binding: t ; eval: (view-mode 1)-*-
72 Enable =view-mode=, which both makes the file read-only (as a reminder
73 that =init.el= is an auto-generated file, not supposed to be edited),
74 and provides some convenient key bindings for browsing through the
79 #+begin_src emacs-lisp :comments none
80 ;; Copyright (C) 2018 Amin Bandali <amin@aminb.org>
82 ;; This program is free software: you can redistribute it and/or modify
83 ;; it under the terms of the GNU General Public License as published by
84 ;; the Free Software Foundation, either version 3 of the License, or
85 ;; (at your option) any later version.
87 ;; This program is distributed in the hope that it will be useful,
88 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
89 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
90 ;; GNU General Public License for more details.
92 ;; You should have received a copy of the GNU General Public License
93 ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
98 #+begin_src emacs-lisp :comments none
101 ;; Emacs configuration of Amin Bandali, computer scientist and functional
104 ;; THIS FILE IS AUTO-GENERATED FROM `init.org'.
107 ** Naming conventions
109 The conventions below were inspired by [[https://github.com/hlissner/doom-emacs][Doom]]'s conventions, found
110 [[https://github.com/hlissner/doom-emacs/blob/5dacbb7cb1c6ac246a9ccd15e6c4290def67757c/core/core.el#L3-L17][here]]. Naturally, I use my initials, =ab=, instead of =doom=.
112 #+begin_src emacs-lisp :comments none
113 ;; Naming conventions:
115 ;; ab-... public variables or non-interactive functions
116 ;; ab--... private anything (non-interactive), not safe for direct use
117 ;; ab/... an interactive function; safe for M-x or keybinding
118 ;; ab:... an evil operator, motion, or command
119 ;; ab|... a hook function
120 ;; ab*... an advising function
121 ;; ab@... a hydra command
127 :CUSTOM_ID: initial-setup
130 #+begin_src emacs-lisp :comments none
134 ** Emacs initialization
136 I'd like to do a couple of measurements of Emacs' startup time. First,
137 let's see how long Emacs takes to start up, before even loading
138 =init.el=, i.e. =user-init-file=:
140 #+begin_src emacs-lisp
141 (defvar ab--before-user-init-time (current-time)
142 "Value of `current-time' when Emacs begins loading `user-init-file'.")
143 (message "Loading Emacs...done (%.3fs)"
144 (float-time (time-subtract ab--before-user-init-time
148 Also, temporarily increase ~gc-cons-threshhold~ and
149 ~gc-cons-percentage~ during startup to reduce garbage collection
150 frequency. Clearing the ~file-name-handler-alist~ seems to help reduce
151 startup time as well.
153 #+begin_src emacs-lisp
154 (defvar ab--gc-cons-threshold gc-cons-threshold)
155 (defvar ab--gc-cons-percentage gc-cons-percentage)
156 (defvar ab--file-name-handler-alist file-name-handler-alist)
157 (setq gc-cons-threshold (* 400 1024 1024) ; 400 MiB
158 gc-cons-percentage 0.6
159 file-name-handler-alist nil
160 ;; sidesteps a bug when profiling with esup
161 esup-child-profile-require-level 0)
164 Of course, we'd like to set them back to their defaults once we're
167 #+begin_src emacs-lisp
171 (let ((elapsed (float-time (time-subtract (current-time)
172 ab--before-user-init-time))))
173 (message "Loading %s...done (%.3fs) [after-init]"
174 user-init-file elapsed))
175 (setq gc-cons-threshold ab--gc-cons-threshold
176 gc-cons-percentage ab--gc-cons-percentage
177 file-name-handler-alist ab--file-name-handler-alist)))
180 Increase the number of lines kept in message logs (the =*Messages*=
183 #+begin_src emacs-lisp
184 (setq message-log-max 20000)
187 Optionally, we could suppress some byte compiler warnings like below,
188 but for now I've decided to keep them enabled. See documentation for
189 ~byte-compile-warnings~ for more details.
191 #+begin_src emacs-lisp
192 ;; (setq byte-compile-warnings
193 ;; '(not free-vars unresolved noruntime lexical make-local))
196 ** Package management
200 I can do all my package management things with Borg, and don't need
201 Emacs' built-in =package.el=. Emacs 27 lets us disable =package.el= in
202 the =early-init-file= (see [[https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=24acb31c04b4048b85311d794e600ecd7ce60d3b][here]]).
204 #+begin_src emacs-lisp :tangle early-init.el
205 (setq package-enable-at-startup nil)
208 But since Emacs 27 isn't out yet (Emacs 26 is just around the corner
209 right now), and even when released it'll be long before most distros
210 ship in their repos, I'll still put the old workaround with the
211 commented call to ~package-initialize~ here anyway.
213 #+begin_src emacs-lisp
214 (setq package-enable-at-startup nil)
215 ;; (package-initialize)
221 Assimilate Emacs packages as Git submodules
224 [[https://github.com/emacscollective/borg][Borg]] is at the heart of package management of my Emacs setup. In
225 short, it creates a git submodule in =lib/= for each package, which
226 can then be managed with the help of Magit or other tools.
228 #+begin_src emacs-lisp
229 (setq user-init-file (or load-file-name buffer-file-name)
230 user-emacs-directory (file-name-directory user-init-file))
231 (add-to-list 'load-path
232 (expand-file-name "lib/borg" user-emacs-directory))
240 A use-package declaration for simplifying your .emacs
243 [[https://github.com/jwiegley/use-package][use-package]] is an awesome utility for managing and configuring
244 packages (in our case especially the latter) in a neatly organized way
245 and without compromising on performance.
247 #+begin_src emacs-lisp
248 (require 'use-package)
249 (if nil ; set to t when need to debug init
250 (setq use-package-verbose t
251 use-package-expand-minimally nil
252 use-package-compute-statistics t
254 (setq use-package-verbose nil
255 use-package-expand-minimally t))
261 Browse the Emacsmirror package database
264 Epkg provides access to a local copy of the [[https://emacsmirror.net][Emacsmirror]] package
265 database, low-level functions for querying the database, and a
266 =package.el=-like user interface for browsing the available packages.
268 #+begin_src emacs-lisp
273 ** No littering in =~/.emacs.d=
276 Help keeping ~/.emacs.d clean
279 By default, even for Emacs' built-in packages, the configuration files
280 and persistent data are all over the place. Use =no-littering= to help
283 #+begin_src emacs-lisp
284 (use-package no-littering
288 (add-to-list 'savehist-additional-variables 'kill-ring)
290 (setq auto-save-file-name-transforms
291 `((".*" ,(no-littering-expand-var-file-name "auto-save/") t))))
294 ** Custom file (=custom.el=)
296 I'm not planning on using the custom file much, but even so, I
297 definitely don't want it mixing with =init.el=. So, here; let's give
298 it it's own file. While at it, treat themes as safe.
300 #+begin_src emacs-lisp
304 (setq custom-file (no-littering-expand-etc-file-name "custom.el"))
305 (when (file-exists-p custom-file)
307 (setf custom-safe-themes t))
310 ** Better =$PATH= handling
312 Let's use [[https://github.com/purcell/exec-path-from-shell][exec-path-from-shell]] to make Emacs use the =$PATH= as set up
315 #+begin_src emacs-lisp
316 (use-package exec-path-from-shell
319 (setq exec-path-from-shell-check-startup-files nil)
321 (exec-path-from-shell-initialize)
322 ;; while we're at it, let's fix access to our running ssh-agent
323 (exec-path-from-shell-copy-env "SSH_AGENT_PID")
324 (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
329 Start server if not already running. Alternatively, can be done by
330 issuing =emacs --daemon= in the terminal, which can be automated with
331 a systemd service or using =brew services start emacs= on macOS. I use
332 Emacs as my window manager (via EXWM), so I always start Emacs on
333 login; so starting the server from inside Emacs is good enough for me.
335 See [[https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html#Emacs-Server][Using Emacs as a Server]].
337 #+begin_src emacs-lisp
339 :config (or (server-running-p) (server-mode)))
344 Font stack with better unicode support, around =Ubuntu Mono= and
347 #+begin_src emacs-lisp
348 (dolist (ft (fontset-list))
352 (font-spec :name "Ubuntu Mono"))
364 :name "Symbola monospacified for DejaVu Sans Mono")
376 *** Time and battery in mode-line
378 Enable displaying time and battery in the mode-line, since I'm not
379 using the Xfce panel anymore. Also, I don't need to see the load
380 average on a regular basis, so disable that.
382 #+begin_src emacs-lisp
386 (setq display-time-default-load-average nil)
393 (display-battery-mode))
398 Might want to set the fringe to a smaller value, especially if using
399 EXWM. I'm fine with the default for now.
401 #+begin_src emacs-lisp
402 ;; (fringe-mode '(3 . 1))
406 *** Disable disabled commands
408 Emacs disables some commands by default that could persumably be
409 confusing for novice users. Let's disable that.
411 #+begin_src emacs-lisp
412 (setq disabled-command-function nil)
417 Save what I copy into clipboard from other applications into Emacs'
418 kill-ring, which would allow me to still be able to easily access it
419 in case I kill (cut or copy) something else inside Emacs before
420 yanking (pasting) what I'd originally intended to.
422 #+begin_src emacs-lisp
423 (setq save-interprogram-paste-before-kill t)
428 #+begin_src emacs-lisp
429 (setq enable-recursive-minibuffers t
430 resize-mini-windows t)
433 *** Lazy-person-friendly yes/no prompts
435 Lazy people would prefer to type fewer keystrokes, especially for yes
436 or no questions. I'm lazy.
438 #+begin_src emacs-lisp
439 (defalias 'yes-or-no-p #'y-or-n-p)
442 *** Startup screen and =*scratch*=
444 Firstly, let Emacs know that I'd like to have =*scratch*= as my
447 #+begin_src emacs-lisp
448 (setq initial-buffer-choice t)
451 Now let's customize the =*scratch*= buffer a bit. First off, I don't
452 need the default hint.
454 #+begin_src emacs-lisp
455 (setq initial-scratch-message nil)
458 Also, let's use Text mode as the major mode, in case I want to
459 customize it (=*scratch*='s default major mode, Fundamental mode,
460 can't really be customized).
462 #+begin_src emacs-lisp
463 (setq initial-major-mode 'text-mode)
466 Inhibit the buffer list when more than 2 files are loaded.
468 #+begin_src emacs-lisp
469 (setq inhibit-startup-buffer-menu t)
472 I don't really need to see the startup screen or echo area message
475 #+begin_src emacs-lisp
476 (advice-add #'display-startup-echo-area-message :override #'ignore)
477 (setq inhibit-startup-screen t
478 inhibit-startup-echo-area-message user-login-name)
481 *** More useful frame titles
483 Show either the file name or the buffer name (in case the buffer isn't
484 visiting a file). Borrowed from Emacs Prelude.
486 #+begin_src emacs-lisp
487 (setq frame-title-format
488 '("" invocation-name " - "
489 (:eval (if (buffer-file-name)
490 (abbreviate-file-name (buffer-file-name))
496 Emacs' default backup settings aren't that great. Let's use more
497 sensible options. See documentation for the ~make-backup-file~
500 #+begin_src emacs-lisp
501 (setq backup-by-copying t
507 The packages in this section are absolutely essential to my everyday
508 workflow, and they play key roles in how I do my computing. They
509 immensely enhance the Emacs experience for me; both using Emacs, and
512 *** [[https://github.com/emacscollective/auto-compile][auto-compile]]
514 #+begin_src emacs-lisp
515 (use-package auto-compile
518 (auto-compile-on-load-mode)
519 (auto-compile-on-save-mode)
520 (setq auto-compile-display-buffer nil
521 auto-compile-mode-line-counter t
522 auto-compile-source-recreate-deletes-dest t
523 auto-compile-toggle-deletes-nonlib-dest t
524 auto-compile-update-autoloads t)
525 (add-hook 'auto-compile-inhibit-compile-hook
526 'auto-compile-inhibit-compile-detached-git-head))
529 *** TODO [[https://github.com/Kungsgeten/ryo-modal][ryo-modal]]
532 Roll your own modal mode
535 *** [[https://github.com/ch11ng/exwm][EXWM]] (window manager)
537 #+begin_src emacs-lisp
541 (require 'exwm-config)
543 ;; Set the initial workspace number.
544 (setq exwm-workspace-number 4)
546 ;; Make class name the buffer name, truncating beyond 50 characters
547 (defun exwm-rename-buffer ()
549 (exwm-workspace-rename-buffer
550 (concat exwm-class-name ":"
551 (if (<= (length exwm-title) 50) exwm-title
552 (concat (substring exwm-title 0 49) "...")))))
553 (add-hook 'exwm-update-class-hook 'exwm-rename-buffer)
554 (add-hook 'exwm-update-title-hook 'exwm-rename-buffer)
557 (exwm-input-set-key (kbd "s-R") #'exwm-reset)
558 ;; 's-\': Switch workspace
559 (exwm-input-set-key (kbd "s-\\") #'exwm-workspace-switch)
560 ;; 's-N': Switch to certain workspace
562 (exwm-input-set-key (kbd (format "s-%d" i))
565 (exwm-workspace-switch-create i))))
566 ;; 's-SPC': Launch application
567 ;; (exwm-input-set-key
570 ;; (interactive (list (read-shell-command "➜ ")))
571 ;; (start-process-shell-command command nil command)))
573 (exwm-input-set-key (kbd "M-s-SPC") #'counsel-linux-app)
575 ;; Shorten 'C-c C-q' to 'C-q'
576 (define-key exwm-mode-map [?\C-q] #'exwm-input-send-next-key)
578 ;; Line-editing shortcuts
579 (setq exwm-input-simulation-keys
584 ([?\M-f] . [C-right])
592 ([?\C-k] . [S-end delete])
594 ;; ([?\C-w] . [?\C-x])
598 ([?\C-s] . [?\C-f])))
603 (add-hook 'exwm-init-hook #'exwm-config--fix/ido-buffer-window-other-frame)
605 (require 'exwm-systemtray)
606 (exwm-systemtray-enable)
608 (require 'exwm-randr)
611 ;; (exwm-input-set-key
612 ;; (kbd "s-<return>")
615 ;; (start-process "urxvt" nil "urxvt")))
617 ;; (exwm-input-set-key
618 ;; (kbd "s-SPC") ;; rofi doesn't properly launch programs when started from emacs
621 ;; (start-process-shell-command "rofi-run" nil "rofi -show run -display-run '> ' -display-window ' 🗔 '")))
623 ;; (exwm-input-set-key
627 ;; (start-process-shell-command "rofi-win" nil "rofi -show window -display-run '> ' -display-window ' 🗔 '")))
629 ;; (exwm-input-set-key
633 ;; (start-process "rofi-pass" nil "rofi-pass")))
635 ;; (exwm-input-set-key
636 ;; (kbd "<XF86AudioMute>")
639 ;; (start-process-shell-command "pamixer" nil "pamixer --toggle-mute")))
641 ;; (exwm-input-set-key
642 ;; (kbd "<XF86AudioLowerVolume>")
645 ;; (start-process-shell-command "pamixer" nil "pamixer --allow-boost --decrease 5")))
647 ;; (exwm-input-set-key
648 ;; (kbd "<XF86AudioRaiseVolume>")
651 ;; (start-process-shell-command "pamixer" nil "pamixer --allow-boost --increase 5")))
653 ;; (exwm-input-set-key
654 ;; (kbd "<XF86AudioPlay>")
657 ;; (start-process-shell-command "mpc" nil "mpc toggle")))
659 ;; (exwm-input-set-key
660 ;; (kbd "<XF86AudioPrev>")
663 ;; (start-process-shell-command "mpc" nil "mpc prev")))
665 ;; (exwm-input-set-key
666 ;; (kbd "<XF86AudioNext>")
669 ;; (start-process-shell-command "mpc" nil "mpv next")))
671 (defun ab--exwm-pasystray ()
672 "A command used to start pasystray."
674 (if (executable-find "pasystray")
676 (message "EXWM: starting pasystray ...")
677 (start-process-shell-command "pasystray" nil "pasystray --notify=all"))
678 (message "EXWM: pasystray is not installed, abort!")))
680 (add-hook 'exwm-init-hook #'ab--exwm-pasystray)
686 (exwm-floating-toggle-floating)))
692 (exwm-layout-toggle-fullscreen)))
698 (kill-buffer (current-buffer))))
704 (exwm-manage--kill-client))))
709 :header-args+: :tangle ~/.config/sxhkd/sxhkdrc :mkdirp yes
719 rofi -show run -display-run '> ' -display-window ' 🗔 '
723 rofi -show window -display-run '> ' -display-window ' 🗔 '
729 # make sxhkd reload its configuration files:
734 XF86Audio{Raise,Lower}Volume
735 pamixer --allow-boost --{in,de}crease 5
739 pamixer --toggle-mute
742 XF86Audio{Play,Prev,Next}
743 mpc {toggle,prev,next}
745 # Toggle keyboard layout
749 # Toggle Xfce presentation mode
751 # toggle-presentation-mode
754 XF86MonBrightness{Up,Down}
761 *** [[https://orgmode.org/][Org mode]]
764 Org mode is for keeping notes, maintaining TODO lists, planning
765 projects, and authoring documents with a fast and effective plain-text
769 In short, my favourite way of life.
771 #+begin_src emacs-lisp
772 (setq org-src-tab-acts-natively t
773 org-src-preserve-indentation nil
774 org-edit-src-content-indentation 0)
777 *** [[https://magit.vc/][Magit]]
780 It's Magit! A Git porcelain inside Emacs.
783 Not just how I do git, but /the/ way to do git.
785 #+begin_src emacs-lisp
788 :bind (("s-g" . magit-status)
789 ("C-x g" . magit-status)
790 ("C-x M-g" . magit-dispatch-popup))
792 (magit-add-section-hook 'magit-status-sections-hook
793 'magit-insert-modules
794 'magit-insert-stashes
798 *** [[https://github.com/abo-abo/swiper][Ivy]] (and friends)
801 Ivy - a generic completion frontend for Emacs, Swiper - isearch with
802 an overview, and more. Oh, man!
805 There's no way I could top that, so I won't attempt to.
809 #+begin_src emacs-lisp
812 (:map ivy-minibuffer-map
813 ([escape] . keyboard-escape-quit)
814 ;; ("C-j" . ivy-next-line)
815 ;; ("C-k" . ivy-previous-line)
816 ([S-up] . ivy-previous-history-element)
817 ([S-down] . ivy-next-history-element)
818 ("DEL" . ivy-backward-delete-char))
826 #+begin_src emacs-lisp
828 :bind (([remap isearch-forward] . swiper)
829 ([remap isearch-backward] . swiper)))
834 #+begin_src emacs-lisp
837 :bind (([remap execute-extended-command] . counsel-M-x)
838 ([remap find-file] . counsel-find-file)
839 ("s-r" . counsel-recentf)
840 :map minibuffer-local-map
841 ("C-r" . counsel-minibuffer-history))
844 (defalias 'locate #'counsel-locate))
847 * Borg's =layer/essentials=
849 TODO: break this giant source block down into individual org sections.
851 #+begin_src emacs-lisp
853 :config (dash-enable-font-lock))
857 (setq diff-hl-draw-borders nil)
858 (global-diff-hl-mode)
859 (add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh t))
863 :config (setq dired-listing-switches "-alh"))
866 :when (version< "25" emacs-version)
867 :config (global-eldoc-mode))
871 :config (temp-buffer-resize-mode))
874 (setq isearch-allow-scroll t))
876 (use-package lisp-mode
878 (add-hook 'emacs-lisp-mode-hook 'outline-minor-mode)
879 (add-hook 'emacs-lisp-mode-hook 'reveal-mode)
880 (defun indent-spaces-mode ()
881 (setq indent-tabs-mode nil))
882 (add-hook 'lisp-interaction-mode-hook #'indent-spaces-mode))
886 :config (setq Man-width 80))
889 :config (show-paren-mode))
891 (use-package prog-mode
892 :config (global-prettify-symbols-mode)
893 (defun indicate-buffer-boundaries-left ()
894 (setq indicate-buffer-boundaries 'left))
895 (add-hook 'prog-mode-hook #'indicate-buffer-boundaries-left))
899 :config (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:"))
901 (use-package savehist
902 :config (savehist-mode))
904 (use-package saveplace
905 :when (version< "25" emacs-version)
906 :config (save-place-mode))
909 :config (column-number-mode))
912 (add-hook 'text-mode-hook #'indicate-buffer-boundaries-left))
917 (add-to-list 'tramp-default-proxies-alist '(nil "\\`root\\'" "/ssh:%h:"))
918 (add-to-list 'tramp-default-proxies-alist '("localhost" nil nil))
919 (add-to-list 'tramp-default-proxies-alist
920 (list (regexp-quote (system-name)) nil nil)))
922 (use-package undo-tree
924 (global-undo-tree-mode)
925 (setq undo-tree-mode-lighter ""))
932 #+begin_src emacs-lisp
933 (use-package lean-mode
934 :bind (:map lean-mode-map
935 ("S-SPC" . company-complete)))
938 * Post initialization
940 :CUSTOM_ID: post-initialization
943 Display how long it took to load the init file.
945 #+begin_src emacs-lisp
946 (message "Loading %s...done (%.3fs)" user-init-file
947 (float-time (time-subtract (current-time)
948 ab--before-user-init-time)))
956 #+begin_src emacs-lisp :comments none
957 ;;; init.el ends here