summary refs log tree commit diff
path: root/emacs/custom/fcuny-vars.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-01-04 19:52:04 -0800
committerFranck Cuny <franck@fcuny.net>2021-01-04 19:52:04 -0800
commit88ab401adc83bea6e1f571c54093dbc7f521e080 (patch)
treee2ae9336119ee36707b0e76a6592f4fc8503a4ef /emacs/custom/fcuny-vars.el
parentgit: store configuration under XDG_CONFIG_HOME (diff)
downloademacs.d-88ab401adc83bea6e1f571c54093dbc7f521e080.tar.gz
emacs: rename the directory
Diffstat (limited to 'emacs/custom/fcuny-vars.el')
-rw-r--r--emacs/custom/fcuny-vars.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-vars.el b/emacs/custom/fcuny-vars.el
new file mode 100644
index 0000000..f3efe6a
--- /dev/null
+++ b/emacs/custom/fcuny-vars.el
@@ -0,0 +1,16 @@
+(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.")
+
+(provide 'fcuny-vars)