Organisation: | Copyright (C) 2025-2025 Olivier Boudeville |
---|---|
Contact: | about (dash) howtos (at) esperide (dot) com |
Creation date: | Sunday, March 16, 2025 |
Lastly updated: | Wednesday, March 19, 2025 |
Emacs is a family of free software text editors that are characterised by their extensibility and their ability to be customised at will.
Quite surprisingly, Emacs still changes a lot (notably in terms of function names), and (Elisp) scripts that work for an Emacs version may not work for the next one. So at least controlling one's version may be of use; run for that emacs --version. We consider using here Emacs 30.1 or more recent.
Of course the best option to install Emacs is to use a (OS-level) package manager, for example: apt-get install emacs - if the supported version is not too ancient.
Otherwise, to perform a manual installation of Emacs on one's user account, it must be first downloaded; one may thus fetch for example emacs-30.1.tar.xz.
Prerequisites may be needed; running - unfortunately as root - apt-get build-dep emacs or alike may be of use, or at least having packages like libgtk-3-dev and librust-tree-sitter-dev installed.
Then:
$ mkdir -p ~/Software/Emacs && cd ~/Software/Emacs $ EMACS_VERSION=30.1 $ mv ~/Downloads/emacs-${EMACS_VERSION}.tar.xz . $ tar xvJf emacs-${EMACS_VERSION}.tar.xz $ cd emacs-${EMACS_VERSION} # If not having these dependencies: $ ./configure --with-xpm=ifavailable --with-gif=ifavailable \ --with-tiff=ifavailable --with-gnutls=ifavailable --prefix=${HOME}/Software/Emacs/emacs-${EMACS_VERSION}-install $ make install $ cd .. && ln -s emacs-${EMACS_VERSION}-install emacs-current-install
Then one's shell environment shall be updated once for all with:
$ export PATH="${HOME}/Software/Emacs/emacs-current-install/bin:${PATH}"
Our base Emacs configuration, init-myriad-base, is designed to be minimal enough not to depend on any third-party element (so it is not relying on a package manager).
It may be used as:
In addition to these base and complete configurations, we defined modular, specialised configuration files for a few topics.
First, the standalone ones, i.e. the specialisations that do not depend on any specific (third-party) package, are:
As for the configurations involving packages, we have:
Finally, an optional (loaded iff found available) init-myriad-local (that link pointing to an example version) configuration allows to define per-computer settings (e.g. to define relevant initial window sizes for that host).
All these configuration files are included by the aforementioned init-myriad-fully-integrated one.
For the sake of testing, an instance of Emacs relying on a given configuration file (typically init.el) can be best run with: emacs --init-directory=$SOME_DIR, where SOME_DIR contains this configuration file (possibly as a symbolic link).
With Emacs:
Here C corresponds to the "Ctrl" key, M the "Meta" one (i.e. "Alt", generally), S to the Shift one, and - is just a separator between a modifier (like Ctrl, Meta, etc.) and an actual key to press while the modifier is still held down. RET means the Enter key, SPC the spacebar, M-L_ARROW / M-R_ARROW the left / right arrow keys.
For example C-x C-- means: press and hold the "Ctrl" key, and hit the "x" key, then release all, then press and hold the "Ctrl" key, and hit the "-" key, and release all.
At least based on our (Emacs and French keyboard) base settings (i.e. the ones in init-base.el), the following key bindings trigger the corresponding actions:
Other useful commands to trigger, possibly explicitly with M-x:
See also our Performing a Merge with Emacs section.
There are at least:
use-package is not a package manager, it is an extensible configuration macro that is specialised by most of the package managers so that it can be used with any.
Refer to this page for a comparison of package managers.
Emacs Lisp is a Lisp dialect made for Emacs.
See the GNU Emacs Lisp Reference Manual.
An Emacs init file contains a series of Lisp expressions, each of them consisting of a function name followed by arguments (expressions), all surrounded by parentheses.
For example: (setq fill-column 60) calls the function setq (set quoted) to set the variable fill-column to 60; as setq affects only the current buffer’s local value, in an initialisation file setq-default is generally preferred.
Elisp examples may be the following conditional setting:
(if (boundp 'coding-category-utf-8) (set-coding-priority '(coding-category-utf-8)))
Or the next function definition and key binding:
(defun my-split-window-func () (interactive) (split-window-below) (set-window-buffer (next-window) (other-buffer))) (global-set-key (kbd "C-x 2") #'my-split-window-func)
If needing to include a configuration file in another:
(load-file "~/elisp/foo.el")
To trigger multiple calls in a single expression, use:
(progn do-this do-that)
(defun func (arg1 arg2) "Always document your functions." <function body>) (defvar var-name <the value> "Always document your variables.")
To concatenate filesystem elements: (file-name-concat "/tmp" "foo") results in "/tmp/foo".
Related Elisp information sources:
Sometimes problems arise due to older packages, for example when a new version of Emacs is used. This may be solved by removing the cache of the package manager (e.g. ~/.emacs.d/straight, ~/.emacs.d/elpaca), relaunching Emacs and waiting for its state (e.g. all related clones) to be downloaded/built again.
To investigate a problem, one may run Emacs with: emacs --debug-init.
As many software ecosystems, the Emacs one tends to change/break frequently, and then one's init.el cannot be edited anymore with a functional Emacs - and the whole situation quickly degenerates in a mess.
One way of overcoming these issues is to have multiple versions of Emacs' configuration, including a very basic one that is never expected to break - just for the purpose of having at all times a base Emacs to fix the others; this is one of the purposes of our rather minimal init-myriad-base configuration, to be used that way:
$ DIR="${HOME}/.emacs.d/myriad-fallback" $ mkdir $DIR && cd $DIR $ ln -s $CEYLAN_MYRIAD/conf/init-myriad-base.el init.el
Then an always-available Emacs may be run with: emacs --init-directory=$DIR, which can made easily available thanks to, in one's shell configuration: alias esafe='emacs --init-directory=${HOME}/.emacs.d/myriad-fallback' (esafe standing for editor safely available).
Alternatively, such a feature can better be implemented thanks to a shell function (to rely as much as possible on a safe emacs, otherwise on gedit, otherwise on nano); see our .bashrc.basics shell file for that.