diff options
author | Gene Pasquet <dev@etenil.net> | 2025-02-12 17:32:19 +0000 |
---|---|---|
committer | Gene Pasquet <dev@etenil.net> | 2025-02-12 17:32:19 +0000 |
commit | 8d40ddffdb8111babc630d89678baa198ddbdfc4 (patch) | |
tree | a11b358fa43effe352efe0f95e3d3fdc0402c6d5 /README.md | |
parent | 2d6e5c6697e362ce967a6f0685a7d798c3dbe054 (diff) |
Theme and various fixes
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -60,6 +60,21 @@ popd And restart emacs. +## Setting a different theme + +To set a different theme, first disable the default theme from Substrate like so: + +```lisp +(setopt substrate-configure-theme t) +``` + +Then set your favourite theme. Instead of using `load-theme`, use `substrate-set-theme`, as it will also work when running emacs as a daemon. + +```lisp +(use-package nord-theme + :config (substrate-set-theme 'nord)) +``` + ## Screenshots What you should see on opening Emacs up with Substrate installed: a simple splash screen, [modus-vivendi](https://protesilaos.com/emacs/modus-themes) active, and the `help-quick` display at the bottom. |