Minor doc fixes
This commit is contained in:
parent
d235c25acd
commit
480170f7a9
2 changed files with 7 additions and 7 deletions
12
init.el
12
init.el
|
@ -42,12 +42,13 @@
|
||||||
(defvar prelude-modules-dir (expand-file-name "modules" prelude-dir)
|
(defvar prelude-modules-dir (expand-file-name "modules" prelude-dir)
|
||||||
"This directory houses all of the built-in Prelude modules.")
|
"This directory houses all of the built-in Prelude modules.")
|
||||||
(defvar prelude-personal-dir (expand-file-name "personal" prelude-dir)
|
(defvar prelude-personal-dir (expand-file-name "personal" prelude-dir)
|
||||||
"Users of Emacs Prelude are encouraged to keep their personal configuration
|
"This directory is for your personal configuration.
|
||||||
changes in this directory. All Emacs Lisp files there are loaded automatically
|
|
||||||
|
Users of Emacs Prelude are encouraged to keep their personal configuration
|
||||||
|
changes in this directory. All Emacs Lisp files there are loaded automatically
|
||||||
by Prelude.")
|
by Prelude.")
|
||||||
(defvar prelude-vendor-dir (expand-file-name "vendor" prelude-dir)
|
(defvar prelude-vendor-dir (expand-file-name "vendor" prelude-dir)
|
||||||
"This directory house Emacs Lisp packages that are not yet available in
|
"This directory houses packages that are not yet available in ELPA (or MELPA).")
|
||||||
ELPA (or MELPA).")
|
|
||||||
(defvar prelude-snippets-dir (expand-file-name "snippets" prelude-dir)
|
(defvar prelude-snippets-dir (expand-file-name "snippets" prelude-dir)
|
||||||
"This folder houses additional yasnippet bundles distributed with Prelude.")
|
"This folder houses additional yasnippet bundles distributed with Prelude.")
|
||||||
(defvar prelude-personal-snippets-dir (expand-file-name "snippets" prelude-personal-dir)
|
(defvar prelude-personal-snippets-dir (expand-file-name "snippets" prelude-personal-dir)
|
||||||
|
@ -61,8 +62,7 @@ ELPA (or MELPA).")
|
||||||
(make-directory prelude-savefile-dir))
|
(make-directory prelude-savefile-dir))
|
||||||
|
|
||||||
(defun prelude-add-subfolders-to-load-path (parent-dir)
|
(defun prelude-add-subfolders-to-load-path (parent-dir)
|
||||||
"Adds all first level `parent-dir' subdirs to the
|
"Add all first level PARENT-DIR subdirs to the `load-path'."
|
||||||
Emacs load path."
|
|
||||||
(dolist (f (directory-files parent-dir))
|
(dolist (f (directory-files parent-dir))
|
||||||
(let ((name (expand-file-name f parent-dir)))
|
(let ((name (expand-file-name f parent-dir)))
|
||||||
(when (and (file-directory-p name)
|
(when (and (file-directory-p name)
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
(prelude-ensure-module-deps '(erlang))
|
(prelude-ensure-module-deps '(erlang))
|
||||||
|
|
||||||
(defcustom wrangler-path nil
|
(defcustom wrangler-path nil
|
||||||
"*The location of wrangler elisp directory"
|
"The location of wrangler elisp directory."
|
||||||
:group 'prelude-erlang
|
:group 'prelude-erlang
|
||||||
:type 'string
|
:type 'string
|
||||||
:safe 'stringp)
|
:safe 'stringp)
|
||||||
|
|
Loading…
Reference in a new issue