From 1543ac66ba6f829082b745e6a11a9aeb9e8faec7 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 23 Mar 2022 09:55:58 -0700 Subject: rename a few more libraries --- emacs/custom/my-vars.el | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 emacs/custom/my-vars.el (limited to 'emacs/custom/my-vars.el') diff --git a/emacs/custom/my-vars.el b/emacs/custom/my-vars.el new file mode 100644 index 0000000..03b9fa0 --- /dev/null +++ b/emacs/custom/my-vars.el @@ -0,0 +1,26 @@ +;;; my-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.") + +(defvar fcuny/path-emacs-etc (expand-file-name "etc" user-emacs-directory) + "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.") + +(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.") + +(defvar fcuny/org-directory + (if (memq window-system '(mac ns)) + (expand-file-name "~/workspace/notebooks/") + (expand-file-name "~/documents/notes/"))) + +(provide 'my-vars) +;;; my-vars.el ends here -- cgit 1.4.1