summary refs log tree commit diff
path: root/emacs/custom/fcuny-vars.el
blob: 632e4c5bb4c533855c14783f19bcc90ce0884e8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
;;; fcuny-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 'fcuny-vars)
;;; fcuny-vars.el ends here