-
Notifications
You must be signed in to change notification settings - Fork 5
/
exports
39 lines (27 loc) · 827 Bytes
/
exports
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
# set ft:zsh
path=('$HOME/.local/bin/' $path)
# Set gnu-sed as sed
path=('$HOMEBREW_PREFIX/opt/gnu-sed/libexec/gnubin/' $path)
LC_ALL=en_US.UTF-8
LANG=en_US.UTF-8
ZDOTDIR="$HOME/.zsh"
ZSH_CUSTOM="$ZDOTDIR/custom"
# Kubernetes
KUBECONFIG=$HOME/.kube/config
# Theme
LS_COLORS="$(vivid generate dracula)"
default_editor="nvim"
EDITOR=$default_editor
TIG_EDITOR=$default_editor
GIT_EDITOR=$default_editor
# Erlang (REPL)/Elixir (iex) history
ERL_AFLAGS="-kernel shell_history enabled -kernel shell_history_file_bytes 2097152"
CONFIG_DIR=$HOME/.config
LDFLAGS="-L/opt/homebrew/opt/zlib/lib"
ICU_PREFIX=$(brew --prefix icu4c)
CFLAGS="-I$ICU_PREFIX/include"
LDFLAGS="-L$ICU_PREFIX/lib"
# Fix for GPG (pinentry and pinentry-touchid)
# https://github.com/gopasspw/gopass/issues/1879
GPG_TTY=$(tty)
eval "$(direnv hook zsh)"