-
Notifications
You must be signed in to change notification settings - Fork 5
/
zshenv
31 lines (23 loc) · 973 Bytes
/
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
export PNPM_HOME=/Users/exaspark/Library/pnpm
export PATH=./bin
export PATH="$PATH:$PNPM_HOME" # pnpm
export PATH=$PATH:/nix/var/nix/profiles/default/bin # nix
export PATH=$PATH:/run/current-system/sw/bin # nix-darwin
export PATH=$PATH:/opt/homebrew/bin
export PATH=$PATH:/opt/homebrew/opt/libpq/bin # pg
export PATH=$PATH:~/go/bin
export PATH=$PATH:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin
export ZSH=$HOME/.oh-my-zsh # Path to your oh-my-zsh installation.
export VISUAL=nvim
export EDITOR=$VISUAL
export LANG=en_US.UTF-8 # You may need to manually set your language environment
export CC=/usr/bin/gcc
# Load all of your custom configurations from custom/
for config_file (~/.zsh/custom/*.zsh(N)); do
source $config_file
done
unset config_file
export ERL_AFLAGS="-kernel shell_history enabled" # iex history for Elixir
export BACKUP_PATH=~/Dropbox/_Backups
export PROJECT_PATH=~/Documents/Code
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1