1 #+title: =aminb='s Emacs Init file
2 #+property: header-args :results silent :comments link :tangle ~/dotfiles/emacs/init.el
8 * Contents :toc_1:noexport:
12 - [[#initial-setup][Initial setup]]
23 #+begin_src emacs-lisp :comments none
24 ;;; init.el --- Amin Bandali's Emacs config -*- lexical-binding: t ; eval: (view-mode 1)-*-
27 Enable =view-mode=, which both makes the file read-only (as a reminder
28 that =init.el= is an auto-generated file, not supposed to be edited),
29 and provides some convenient key bindings for browsing through the
34 #+begin_src emacs-lisp :comments none
35 ;; Copyright (C) 2018 Amin Bandali <amin@aminb.org>
37 ;; This program is free software: you can redistribute it and/or modify
38 ;; it under the terms of the GNU General Public License as published by
39 ;; the Free Software Foundation, either version 3 of the License, or
40 ;; (at your option) any later version.
42 ;; This program is distributed in the hope that it will be useful,
43 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
44 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
45 ;; GNU General Public License for more details.
47 ;; You should have received a copy of the GNU General Public License
48 ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
53 #+begin_src emacs-lisp :comments none
56 ;; Emacs configuration of Amin Bandali, computer scientist and functional
59 ;; THIS FILE IS AUTO-GENERATED FROM `init.org'.
64 :CUSTOM_ID: initial-setup
67 #+begin_src emacs-lisp :comments none
73 Measure and display startup time. Also, temporarily increase
74 ~gc-cons-threshhold~ during startup to reduce reduce garbage
75 collection frequency. Taken from [[https://github.com/dieggsy/dotfiles/tree/3d95bc08033920e077855caf545a975eba52d28d/emacs.d#startup-time][here]].
77 #+begin_src emacs-lisp
78 (defconst aminb/emacs-start-time (current-time))
79 (defconst aminb/gc-cons-threshold gc-cons-threshold)
80 (defconst aminb/gc-cons-percentage gc-cons-percentage)
81 (defvar aminb/file-name-handler-alist file-name-handler-alist)
82 (setq gc-cons-threshold 400000000
83 gc-cons-percentage 0.6
84 file-name-handler-alist nil
85 ;; sidesteps a bug when profiling with esup
86 esup-child-profile-require-level 0)
89 Reset the variables back to default after init.
91 #+begin_src emacs-lisp
95 (setq gc-cons-threshold aminb/gc-cons-threshold
96 gc-cons-percentage aminb/gc-cons-percentage
97 file-name-handler-alist aminb/file-name-handler-alist)
98 (let ((elapsed (float-time (time-subtract (current-time)
99 aminb/emacs-start-time))))
100 (message "Loading %s...done (%.3fs) [after-init]"
101 ,load-file-name elapsed))))
104 ** Package management
109 Next-generation, purely functional package manager for the Emacs
113 =straight.el= allows me to have a fully reproducible Emacs setup.
117 #+begin_src emacs-lisp
118 (let ((bootstrap-file (concat user-emacs-directory "straight/repos/straight.el/bootstrap.el"))
119 (bootstrap-version 3))
120 (unless (file-exists-p bootstrap-file)
122 (url-retrieve-synchronously
123 "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
124 'silent 'inhibit-cookies)
125 (goto-char (point-max))
126 (eval-print-last-sexp)))
127 (load bootstrap-file nil 'nomessage))
132 #+begin_src emacs-lisp
133 (defun straight-reload-init ()
136 (straight-transaction
137 (straight-mark-transaction-as-init)
138 (message "Reloading init.el...")
139 (load user-init-file nil 'nomessage)
140 (message "Reloading init.el... done.")))
142 (defun straight-eval-buffer ()
143 "Evaluate the current buffer as Elisp code."
145 (message "Evaluating %s..." (buffer-name))
146 (straight-transaction
147 (if (null buffer-file-name)
149 (when (string= buffer-file-name user-init-file)
150 (straight-mark-transaction-as-init))
151 (load-file buffer-file-name)))
152 (message "Evaluating %s... done." (buffer-name)))
158 A use-package declaration for simplifying your .emacs.
161 =use-package= is an awesome utility for managing and configuring
162 packages in a neatly organized way and without compromising on
163 performance. So let's install it using =striaght.el= and have it use
164 =straight.el= for installing packages.
166 #+begin_src emacs-lisp
167 (straight-use-package 'use-package)
168 (setq straight-use-package-by-default t)
171 ** No littering in =~/.emacs.d=
174 Help keeping ~/.emacs.d clean.
177 By default, even for Emacs' built-in packages, the configuration files
178 and persistent data are all over the place. Use =no-littering= to help
181 #+begin_src emacs-lisp
182 (use-package no-littering
186 (add-to-list 'savehist-additional-variables 'kill-ring)
188 (setq auto-save-file-name-transforms
189 `((".*" ,(no-littering-expand-var-file-name "auto-save/") t))))
192 ** Custom file (=custom.el=)
194 I'm not planning on using the custom file much, but even so, I
195 definitely don't want it mixing with =init.el=. So, here, let's give
198 #+begin_src emacs-lisp
199 (setq custom-file (no-littering-expand-etc-file-name "custom.el"))
200 (when (file-exists-p custom-file)
206 Emacs' default backup settings aren't that great. Let's use more
207 sensible options. See documentation for the ~make-backup-file~
210 #+begin_src emacs-lisp
211 (setq backup-by-copying t
222 #+begin_src emacs-lisp
223 (setq org-src-tab-acts-natively t
224 org-src-preserve-indentation nil
225 org-edit-src-content-indentation 0)
233 #+begin_src emacs-lisp :comments none
234 ;;; init.el ends here