summary refs log tree commit diff
path: root/emacs.d/config/config-env.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs.d/config/config-env.el17
1 files changed, 11 insertions, 6 deletions
diff --git a/emacs.d/config/config-env.el b/emacs.d/config/config-env.el
index 3f7bf0a..a7ea4f5 100644
--- a/emacs.d/config/config-env.el
+++ b/emacs.d/config/config-env.el
@@ -1,19 +1,24 @@
-(defvar fcuny/workspace (expand-file-name "workspace" (getenv "HOME"))
+(defvar fcuny-path-home (getenv "HOME")
+  "Path to the user's home directory.")
+
+(defvar fcuny-path-workspace (expand-file-name "workspace" fcuny-path-home)
   "Path to the workspace.")
 
-(defvar fcuny/path-twitter-git (expand-file-name "git.twitter.biz" fcuny/workspace)
+(defvar fcuny-path-git-twitter (expand-file-name "git.twitter.biz" fcuny-path-workspace)
   "Path to twitter's git repositories.")
 
-(defvar fcuny/path-github (expand-file-name "github.com" fcuny/workspace)
+(defvar fcuny-path-git-github (expand-file-name "github.com" fcuny-path-workspace)
   "Path to github's git repositories.")
 
-(defvar fcuny/path-twitter-svn (expand-file-name "svn.twitter.biz" fcuny/workspace)
+(defvar fcuny-path-svn-twitter (expand-file-name "svn.twitter.biz" fcuny-path-workspace)
   "Path to twitter's SVN repositories.")
 
-(defvar fcuny/twitter-ops-linter (expand-file-name "twitter-ops/utilities/puppet/.puppet-lint.rc" fcuny/path-twitter-svn)
+(defvar fcuny-path-puppet-linter-svn (expand-file-name "twitter-ops/utilities/puppet/.puppet-lint.rc"
+                                                       fcuny-path-svn-twitter)
   "Path to the linter's configuration for twitter-ops.")
 
-(defvar fcuny/twitter-gcp-linter (expand-file-name "gcp-puppet-manifests/.puppet-lint-rc" fcuny/path-twitter-git)
+(defvar fcuny-path-puppet-linter-gcp (expand-file-name "gcp-puppet-manifests/.puppet-lint-rc"
+                                                       fcuny-path-git-twitter)
   "Path to the linkter's configucation for gcp-puppet-manifests")
 
 (provide 'config-env)