Skip to content

Commit

Permalink
Merge pull request #37 from bkaestner/patch-1
Browse files Browse the repository at this point in the history
Enhance defcustom definitions
  • Loading branch information
daviwil committed Sep 13, 2021
2 parents 03825fe + 7cc86d3 commit 5e1f994
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions show-notes/Emacs-Lisp-04.org
Original file line number Diff line number Diff line change
Expand Up @@ -448,13 +448,13 @@ We're going convert a couple of the variables from last time into customizable v

(defcustom dotfiles-folder "~/.dotfiles"
"The folder where dotfiles and org-mode configuration files are stored."
:type 'string
:type 'directory
:group 'dotfiles)

(defcustom dotfiles-org-files '()
"The list of org-mode files under the `dotfiles-folder' which
contain configuration files that should be tangled"
:type '(list string)
:type '(repeat string)
:group 'dotfiles)

(defun dotfiles-tangle-org-file (&optional org-file)
Expand Down

0 comments on commit 5e1f994

Please sign in to comment.