diff options
Diffstat (limited to 'emacs/custom')
-rw-r--r-- | emacs/custom/fcuny-vars.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/emacs/custom/fcuny-vars.el b/emacs/custom/fcuny-vars.el index 3f025fc..632e4c5 100644 --- a/emacs/custom/fcuny-vars.el +++ b/emacs/custom/fcuny-vars.el @@ -1,3 +1,7 @@ +;;; fcuny-vars.el --- Set a number of variables +;;; Commentary: +;;; Code: + (defvar fcuny/path-emacs-var (expand-file-name "var" user-emacs-directory) "Path to some files for Emacs.") @@ -5,7 +9,7 @@ "Path to some files for Emacs.") (defvar fcuny/custom-settings (expand-file-name "emacs-custom.el" fcuny/path-emacs-var) - "Path to emacs custom variables.") + "Path to Emacs custom variables.") (defvar fcuny/path-emacs-elpa (expand-file-name "elpa" fcuny/path-emacs-var) "Path to elpa's local files.") @@ -19,3 +23,4 @@ (expand-file-name "~/documents/notes/"))) (provide 'fcuny-vars) +;;; fcuny-vars.el ends here |