-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.zsh
30 lines (26 loc) · 868 Bytes
/
env.zsh
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
if [[ -f "$HOME/certificates/sfdx_bundle.pem" ]]
then
export NODE_EXTRA_CA_CERTS=$HOME/certificates/sfdx_bundle.pem
elif [[ -f "$HOME/.tls/tempCA/sfdc-dev-root.crt" ]]
then
export NODE_EXTRA_CA_CERTS=$HOME/.tls/tempCA/sfdc-dev-root.crt
fi
export LEDGER="$HOME/ledgers/master_ledger.ldg"
export EDITOR='nvim'
export GPG_TTY=$(tty)
export SPACESHIP_PACKAGE_SYMBOL="📦 "
export SPACESHIP_DOCKER_SYMBOL="🐳 "
export SPACESHIP_MAVEN_SYMBOL="🪶 "
export VI_MODE_RESET_PROMPT_ON_MODE_CHANGE=true
export VI_MODE_SET_CURSOR=true
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#8a8a8a"
export ZSH_AUTOSUGGEST_STRATEGY=(history completion)
# colors
export RESTORE='\033[0m'
export RED='\033[00;31m'
export GREEN='\033[00;32m'
export YELLOW='\033[00;33m'
export BLUE='\033[00;34m'
export PURPLE='\033[00;35m'
export CYAN='\033[00;36m'
export LIGHTGRAY='\033[00;37m'