diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-vars.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/emacs.d/custom/fcuny-vars.el b/emacs.d/custom/fcuny-vars.el index d4ff49f..67b04fa 100644 --- a/emacs.d/custom/fcuny-vars.el +++ b/emacs.d/custom/fcuny-vars.el @@ -1,10 +1,13 @@ -(defvar fcuny-path-emacs-var (expand-file-name "var" user-emacs-directory) +(defvar fcuny/path-emacs-var (expand-file-name "var" user-emacs-directory) "Path to some files for Emacs.") -(defvar fcuny/custom-settings (expand-file-name "emacs-custom.el" fcuny-path-emacs-var) +(defvar fcuny/custom-settings (expand-file-name "emacs-custom.el" fcuny/path-emacs-var) "Path to emacs custom variables.") -(defvar fcuny-path-emacs-elpa (expand-file-name "elpa" fcuny-path-emacs-var) +(defvar fcuny/path-emacs-elpa (expand-file-name "elpa" fcuny/path-emacs-var) "Path to elpa's local files.") +(defvar fcuny/path-workspace (expand-file-name "workspace" (getenv "HOME")) + "Path to the workspace.") + (provide 'fcuny-vars) |