-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.zprofile
More file actions
27 lines (19 loc) · 737 Bytes
/
.zprofile
File metadata and controls
27 lines (19 loc) · 737 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
# Set PATH, MANPATH, etc., for Homebrew.
eval "$(/opt/homebrew/bin/brew shellenv)"
# A place to put personal executable
export PATH="$HOME/.local/bin:$PATH"
export VISUAL=nvim
export EDITOR="$VISUAL"
export CPATH="$(brew --prefix)/include:$CPATH"
export LIBRARY_PATH="$(brew --prefix)/lib:$LIBRARY_PATH"
export XDG_CONFIG_HOME=$HOME/.config
export K9SCONFIG=$XDG_CONFIG_HOME/k9s
export FZF_DEFAULT_OPTS="--color=16"
# Enables history in IEx
export ERL_AFLAGS="-kernel shell_history enabled"
# For compiling erlang
export KERL_CONFIGURE_OPTIONS="--disable-debug --without-javac"
# Enable erlang docs for IEx help function
export KERL_BUILD_DOCS="yes"
eval "$(direnv hook zsh)"
[ -f ~/.zprofile.local ] && source ~/.zprofile.local