blob: 67b04fa7076c3ca00af359512d20f4b8c855a2f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(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)
"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)
|