-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_zshenv
32 lines (25 loc) · 859 Bytes
/
dot_zshenv
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
##########
# PREZTO #
##########
# Ensure that a non-login, non-interactive shell has a defined environment.
if [[ ( "$SHLVL" -eq 1 && ! -o LOGIN || -z "${TMPDIR}" ) && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; then
source "${ZDOTDIR:-$HOME}/.zprofile"
fi
###############
# ENVIRONMENT #
###############
# export BROWSER='firefox-developer-edition'
# export EDITOR="emacsclient -t --socket-name /run/user/1000/emacs/server"
# export VISUAL="emacsclient -t --socket-name /run/user/1000/emacs/server"
export GPGKEY=24481BFA
export PATH=$PATH:$HOME/bin
export PATH=$PATH:$HOME/.local/bin
export PATH=$PATH:$HOME/.cargo/bin
export PATH=$PATH:$HOME/.yarn/bin
export PATH=$PATH:$HOME/.dotnet/tools
####################
# Google Cloud SDK #
####################
if [ -f /opt/google-cloud-sdk/path.zsh.inc ]; then
source /opt/google-cloud-sdk/path.zsh.inc
fi