]>
Commit | Line | Data |
---|---|---|
fa250235 BB |
1 | ################################################################################ |
2 | # Load Functions | |
3 | ################################################################################ | |
fa250235 BB |
4 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/dotenv.zsh" |
5 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/graphviz.zsh" | |
6 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/short-uptime.zsh" | |
7fdbf6d8 | 7 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/figlet-sample.zsh" |
a8d8a9d8 | 8 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/prettify-json.zsh" |
b6bcca60 | 9 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/status.zsh" |
fa250235 BB |
10 | |
11 | ################################################################################ | |
12 | # Load Modules | |
13 | ################################################################################ | |
14 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/environment.zsh" | |
15 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/editor.zsh" | |
16 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/history.zsh" | |
17 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/directory.zsh" | |
18 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/prompt.zsh" | |
19 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/vendor/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" | |
20 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/completion.zsh" | |
21 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/aliases.zsh" | |
22 | ||
23 | ################################################################################ | |
24 | # ENV VARIABLES | |
25 | ################################################################################ | |
26 | # Terminal related | |
b6bcca60 | 27 | export TERM=xterm-256color |
fa250235 BB |
28 | |
29 | # Paths | |
30 | # export JAVA_HOME=$(/usr/libexec/java_home) # Enable if using JDK, otherwise disable for performance | |
54bfa8d0 | 31 | export XDG_CONFIG_HOME=$HOME/.config |
b6bcca60 | 32 | export GOPATH=$HOME/projects/go |
fa250235 BB |
33 | export ANDROID_HOME=$HOME/Library/Android/sdk |
34 | export ANDROID_NDK_HOME=$HOME/Library/Android/sdk/ndk-bundle | |
b945717b | 35 | export PATH=$PATH:$HOME:${GOPATH//://bin:}/bin |
fa250235 BB |
36 | export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_NDK_HOME:/Applications/calibre.app/Contents/MacOS |
37 | ||
fa250235 BB |
38 | # GPG |
39 | export GPG_TTY=$(tty) | |
40 | ||
41 | # FZF Config | |
a642d2fd | 42 | [ -x "$(command -v fzf)" ] && source <(fzf --zsh) |
27561e82 | 43 | |
cd3948f4 | 44 | export FZF_DEFAULT_COMMAND='/usr/bin/env rg --color never --files --hidden -g \!.git' |
fa250235 | 45 | export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500''' |
30519082 | 46 | |
fa250235 BB |
47 | ################################################################################ |
48 | # SECRET ENV VARS!! | |
49 | ################################################################################ | |
50 | ||
51 | if [[ -s "${ZDOTDIR:-$HOME}/.secrets.zsh" ]]; then | |
52 | source "${ZDOTDIR:-$HOME}/.secrets.zsh" | |
53 | fi | |
54 | ||
c3de6b2b BB |
55 | # Load a local config |
56 | ||
57 | if [[ -s "${ZDOTDIR:-$HOME}/.zshrc.local" ]]; then | |
58 | source "${ZDOTDIR:-$HOME}/.zshrc.local" | |
59 | fi | |
60 | ||
c01804a4 | 61 | if [[ -s "/opt/homebrew/bin/brew" ]]; then |
b6bcca60 | 62 | # Brew Setup |
c01804a4 | 63 | export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH |
b6bcca60 | 64 | export FZF_VIM_PATH=/opt/homebrew/opt/fzf |
c01804a4 | 65 | . /opt/homebrew/etc/profile.d/z.sh |
b6bcca60 | 66 | . /opt/homebrew/opt/asdf/libexec/asdf.sh |
086f96e4 | 67 | else |
b6bcca60 | 68 | # Z (Linux) |
bb290191 RBR |
69 | if [[ -s "/usr/libexec/z.sh" ]]; then |
70 | . /usr/libexec/z.sh | |
ad7a214d | 71 | else |
bb290191 RBR |
72 | if [[ -s "/usr/share/z/z.sh" ]]; then |
73 | . /usr/share/z/z.sh | |
74 | else | |
75 | . /usr/local/etc/profile.d/z.sh | |
76 | fi | |
ad7a214d | 77 | fi |
fab93d61 | 78 | |
b6bcca60 | 79 | # ASDF (Linux) |
ad7a214d RBR |
80 | if [[ -s "/opt/asdf-vm/asdf.sh" ]]; then |
81 | . /opt/asdf-vm/asdf.sh | |
82 | else | |
83 | . $HOME/.asdf/asdf.sh | |
84 | fi | |
cd3948f4 | 85 | fi |
2a55fbef | 86 | |
b6bcca60 | 87 | # ASDF Java |
2a55fbef RBR |
88 | if [[ -s "~/.asdf/plugins/java/set-java-home.zsh" ]]; then |
89 | . ~/.asdf/plugins/java/set-java-home.zsh | |
90 | fi |