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.el19
1 files changed, 19 insertions, 0 deletions
diff --git a/emacs.d/config/config-env.el b/emacs.d/config/config-env.el
new file mode 100644
index 0000000..3f7bf0a
--- /dev/null
+++ b/emacs.d/config/config-env.el
@@ -0,0 +1,19 @@
+(defvar fcuny/workspace (expand-file-name "workspace" (getenv "HOME"))
+  "Path to the workspace.")
+
+(defvar fcuny/path-twitter-git (expand-file-name "git.twitter.biz" fcuny/workspace)
+  "Path to twitter's git repositories.")
+
+(defvar fcuny/path-github (expand-file-name "github.com" fcuny/workspace)
+  "Path to github's git repositories.")
+
+(defvar fcuny/path-twitter-svn (expand-file-name "svn.twitter.biz" fcuny/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)
+  "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)
+  "Path to the linkter's configucation for gcp-puppet-manifests")
+
+(provide 'config-env)