темы емакса
Коротенькая памятка.
To choose a new theme just do a M-x load-theme<RET>
и будет список тем. Tab completion is available for the names of the available themes.
If you like a theme so much that you’d want to use it all the time you can put in your Emacs configuration (.emacs or init.el for instance) like this:
(load-theme 'theme-name t)
If you’d like to return to the default-theme just do a M-x disable-theme
.
Темы надо складывать сюда (в смысле, по умолчанию емакс смотрит сюда, но можно указать и другое значение):
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes")
Или делать так:
;;;###autoload (when load-file-name (add-to-list 'custom-theme-load-path (file-name-as-directory (file-name-directory load-file-name))))
И называть файлы name-theme.el
https://www.gnu.org/software/emacs/manual/html_node/emacs/Custom-Themes.html
Там ещё про то, как через интерфейс customize, через M-x custom-themes
в основном.