-
Notifications
You must be signed in to change notification settings - Fork 0
/
.exports
42 lines (32 loc) · 1.04 KB
/
.exports
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
export MANPATH="/usr/local/man:$MANPATH"
# Color for manpages in less makes manpages easier to read
export LESS_TERMCAP_mb=$'\E[01;31m'
export LESS_TERMCAP_md=$'\E[01;31m'
export LESS_TERMCAP_me=$'\E[0m'
export LESS_TERMCAP_se=$'\E[0m'
export LESS_TERMCAP_so=$'\E[01;44;33m'
export LESS_TERMCAP_ue=$'\E[0m'
export LESS_TERMCAP_us=$'\E[01;32m'
# Make vim the default editor
export EDITOR="vim"
# Language environment
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
# History file
export HISTFILE="$HOME/.history"
# History timestamp format
export HISTTIMEFORMAT="%F %T :"
# History size
export HISTSIZE=10000
# Omit duplicates and commands that begin with a space from history.
export HISTCONTROL="ignoreboth"
# Golang
export GOPATH=$(go env GOPATH)
export GOBIN=$GOPATH/bin
# Python
export PYTHONIOENCODING="UTF-8"
export PYENV_ROOT=$(pyenv root)
export PYENV_SHIMS="${HOME}/.pyenv/shims"
export PATH="$PATH:/usr/local/bin:/usr/local/opt/sqlite/bin:$HOME/.local/bin:$HOME/bin:$GOPATH:$GOBIN:$PYENV_SHIMS"
# GCP
export USE_GKE_GCLOUD_AUTH_PLUGIN=True