-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_zshenv
More file actions
51 lines (34 loc) · 780 Bytes
/
dot_zshenv
File metadata and controls
51 lines (34 loc) · 780 Bytes
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
# Language
LANG='en_US.UTF-8'
LANGUAGE='en'
# Editors
export EDITOR='nvim'
export VISUAL='nvim'
export PAGER='less'
# Less
export LESS='-F -g -i -M -R -S -w -X -z-4'
# Android
export ANDROID_HOME=$HOME/Library/Android/sdk
# GO
export GOPATH=$HOME/.ghq
export GO111MODULE=auto
# Rust
export CARGO_HOME=$HOME/.cargo
# Deno
export DENO_INSTALL="/Users/mt_coff/.deno"
# Path
typeset -gU cdpath fpath mailpath path
export CLOUDSDK_PYTHON=/usr/local/Cellar/python@3.8/3.8.5/bin/python3
path=(
/usr/local/{bin,sbin}(N-/)
$GOPATH/bin(N-/)
$ANDROID_HOME/bin(N-/)
$ANDROID_HOME/tools
$ANDROID_HOME/platform-tools
$ANYENV_DEFINITION_ROOT/bin(N-/)
$CARGO_HOME/bin(N-/)
$HOME/.cargo/env
$HOME/development/flutter/bin(N-/)
$DENO_INSTALL/bin:$PATH
$path
)