From 54251d877632d19d098c0cd08735c964eaaeb4ae Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 8 Apr 2018 16:28:22 -0700 Subject: [emacs] Rename some custom variables. Use '-' as a separator instead of '/' in some variable's names. --- emacs.d/config/config-env.el | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'emacs.d/config') 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) -- cgit 1.4.1