v5-templates-official-emacs.md
Emacs can be themed using the Noctalia color scheme through the built-in theme system.
Add the theme to your Emacs configuration: Add the following line to your Emacs configuration file (typically ~/.emacs.d/config.el, or ~/.config/doom/config.el):
Reload your configuration:
M-x eval-buffer or C-x C-e after the lineSection titled “Configuration Example”
Here’s a complete example of how to add it to your config.el:
;; Load Noctalia theme(load-theme 'noctalia t)
You can also add it conditionally or after other configurations:
;; Load Noctalia theme after startup(add-hook 'after-init-hook (lambda () (load-theme 'noctalia t)))
Section titled “Troubleshooting”
(add-to-list 'custom-theme-load-path "~/.config/emacs/themes/") before (load-theme 'noctalia t).(load-theme 'noctalia t) to your Emacs configuration filet argument in load-theme disables other themes. If you want to keep other themes, you may need to adjust your configurationSection titled “Additional Notes”
The Noctalia theme for Emacs integrates with Noctalia’s color scheme system. When you change color schemes in Noctalia, the Emacs theme will be regenerated to match. You’ll need to reload the theme in Emacs to see the changes:
(load-theme 'noctalia t)
Or use M-x load-theme and select noctalia from the list.