blob: 328914e821c238409ce2746f25f5d3032d085802 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
(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-git-twitter (expand-file-name "git.twitter.biz" fcuny-path-workspace)
"Path to twitter's git repositories.")
(defvar fcuny-path-git-github (expand-file-name "github.com" fcuny-path-workspace)
"Path to github's git repositories.")
(defvar fcuny-path-svn-twitter (expand-file-name "svn.twitter.biz" fcuny-path-workspace)
"Path to twitter's SVN repositories.")
(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-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.")
(defvar fcuny-path-emacs-var (expand-file-name "var" user-emacs-directory)
"Path to some files for Emacs.")
(defvar fcuny-path-emacs-elpa (expand-file-name "elpa" fcuny-path-emacs-var)
"Path to elpa's local files.")
(defvar fcuny-projects-ignored-dirs
'(".git" ".svn" "target"
"elpa"))
(defvar fcuny-projects-ignored-files
'(".DS_Store"
"*.pyc"
"*.jar"
"*.zip" "*.tar.gz" "*.tgz" "*.gz"
"TAGS"))
(provide 'config-env)
|