Variable: custom-theme-directory

custom-theme-directory is a customizable variable defined in custom.el.gz.

Value

"~/.emacs.d/"

Documentation

Default user directory for storing custom theme files.

The command customize-create-theme writes theme files into this directory. By default, Emacs searches for custom themes in this directory first---see custom-theme-load-path.

This variable was added, or its default value changed, in Emacs 22.1.

View in manual

Probably introduced at or before Emacs version 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/custom.el.gz
;;; Loading themes.

(defcustom custom-theme-directory user-emacs-directory
  "Default user directory for storing custom theme files.
The command `customize-create-theme' writes theme files into this
directory.  By default, Emacs searches for custom themes in this
directory first---see `custom-theme-load-path'."
  :initialize #'custom-initialize-delay
  :type 'directory
  :group 'customize
  :version "22.1")