summary refs log tree commit diff
path: root/emacs/custom/my-vars.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-23 19:23:34 -0700
committerFranck Cuny <franck@fcuny.net>2022-03-23 19:23:34 -0700
commit52023b34601a9afe4fd67bbb2f0b8c17b3b64d65 (patch)
tree993903dcb044f37b32c0cd8250cadba55ebaa952 /emacs/custom/my-vars.el
parentinit: simplify loading libraries (diff)
downloademacs.d-52023b34601a9afe4fd67bbb2f0b8c17b3b64d65.tar.gz
functions: move custom functions to libraries
Diffstat (limited to 'emacs/custom/my-vars.el')
-rw-r--r--emacs/custom/my-vars.el26
1 files changed, 0 insertions, 26 deletions
diff --git a/emacs/custom/my-vars.el b/emacs/custom/my-vars.el
deleted file mode 100644
index 03b9fa0..0000000
--- a/emacs/custom/my-vars.el
+++ /dev/null
@@ -1,26 +0,0 @@
-;;; 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