-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.environment
50 lines (39 loc) · 1.27 KB
/
.environment
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
42
43
44
45
46
47
48
49
50
#!/usr/bin/env sh
# CLI environment variables configuration for bash and zsh
# to be used instead of .bash_environment or .zshenv
# echo ~/.environment
# Default Editor
export EDITOR="vim"
# Language, locale, and character encoding.
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
# Homebrew
export HOMEBREW_HOME=$(brew --cellar)
pathmunge /usr/local/bin
pathmunge /usr/local/sbin
# Python
pathmunge $(brew --prefix python)/bin
pathmunge $(brew --prefix python)/libexec/bin
# Replace some macOs utils with GNU utils.
# Note: this requires `brew install coreutils findutils`.
# @see brew.sh
pathmunge $(brew --prefix coreutils)/libexec/gnubin
pathmunge $(brew --prefix findutils)/libexec/gnubin
# Custom scripts.
pathmunge $HOME/.local/bin
# PHP Composer.
pathmunge $HOME/.composer/vendor/bin
export COMPOSER_MEMORY_LIMIT=-1
# Platform.sh CLI
pathmunge $HOME/.platformsh/bin
# Node JS
export NODE_PATH="/usr/local/lib/node"
export NPM_HOME="/usr/local/lib/node_modules/npm"
export NVM_DIR="~/.nvm"
# Go Lang
export GOPATH=$HOME/.go
export GOROOT=$(brew --prefix golang)/libexec
# Jira omz plugin config
export JIRA_URL="https://bluespark.atlassian.net"
export JIRA_TEMPO_PATH="/plugins/servlet/ac/io.tempo.jira/tempo-app#!/my-work/week?type=TIME"
export JIRA_NAME="[email protected]"