summary refs log tree commit diff
path: root/emacs.d/config
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2018-04-08 16:28:22 -0700
committerFranck Cuny <franck.cuny@gmail.com>2018-04-08 16:28:22 -0700
commit54251d877632d19d098c0cd08735c964eaaeb4ae (patch)
treed18bd727529288ea1b474c62836c69986e82b2f4 /emacs.d/config
parent[tmux] Add tmux again. (diff)
downloademacs.d-54251d877632d19d098c0cd08735c964eaaeb4ae.tar.gz
[emacs] Rename some custom variables.
Use '-' as a separator instead of '/' in some variable's names.
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)