]>
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" |
fa250235 BB |
9 | |
10 | ################################################################################ | |
11 | # Load Modules | |
12 | ################################################################################ | |
13 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/environment.zsh" | |
14 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/editor.zsh" | |
15 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/history.zsh" | |
16 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/directory.zsh" | |
17 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/prompt.zsh" | |
18 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/vendor/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" | |
19 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/completion.zsh" | |
20 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/aliases.zsh" | |
21 | ||
22 | ################################################################################ | |
23 | # ENV VARIABLES | |
24 | ################################################################################ | |
25 | # Terminal related | |
26 | export TERM=xterm-256color-italic | |
27 | ||
28 | # Paths | |
29 | # export JAVA_HOME=$(/usr/libexec/java_home) # Enable if using JDK, otherwise disable for performance | |
30 | export GOPATH=$HOME/Projects/go | |
fa250235 BB |
31 | export ANDROID_HOME=$HOME/Library/Android/sdk |
32 | export ANDROID_NDK_HOME=$HOME/Library/Android/sdk/ndk-bundle | |
33 | export NVM_DIR=$HOME/.nvm | |
b945717b | 34 | export PATH=$PATH:$HOME:${GOPATH//://bin:}/bin |
fa250235 BB |
35 | export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_NDK_HOME:/Applications/calibre.app/Contents/MacOS |
36 | ||
fa250235 BB |
37 | # Python related variables |
38 | export VIRTUAL_ENV_DISABLE_PROMPT=1 | |
39 | export WORKON_HOME=$HOME/.virtualenvs | |
086f96e4 | 40 | export PROJECT_HOME=$HOME/Documents/projects |
fa250235 BB |
41 | |
42 | # GPG | |
43 | export GPG_TTY=$(tty) | |
44 | ||
45 | # FZF Config | |
27561e82 | 46 | [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh |
e4963fae RBR |
47 | [ -f /usr/share/doc/fzf/examples/key-bindings.zsh ] && source /usr/share/doc/fzf/examples/key-bindings.zsh |
48 | [ -f /usr/share/doc/fzf/examples/completion.zsh ] && source /usr/share/doc/fzf/examples/completion.zsh | |
27561e82 | 49 | |
cd3948f4 | 50 | export FZF_DEFAULT_COMMAND='/usr/bin/env rg --color never --files --hidden -g \!.git' |
fa250235 | 51 | export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500''' |
c01804a4 RBR |
52 | if [[ -s "/opt/homebrew/bin/brew" ]]; then |
53 | export FZF_VIM_PATH=/opt/homebrew/opt/fzf | |
54 | else | |
3945b868 | 55 | if [[ -s "/usr/local/bin/brew" ]]; then |
071e5a53 RBR |
56 | export FZF_VIM_PATH=/usr/local/opt/fzf |
57 | else | |
58 | export FZF_VIM_PATH=/usr/share/doc/fzf/examples | |
59 | fi | |
c01804a4 | 60 | fi |
30519082 | 61 | |
fa250235 BB |
62 | ################################################################################ |
63 | # SECRET ENV VARS!! | |
64 | ################################################################################ | |
65 | ||
66 | if [[ -s "${ZDOTDIR:-$HOME}/.secrets.zsh" ]]; then | |
67 | source "${ZDOTDIR:-$HOME}/.secrets.zsh" | |
68 | fi | |
69 | ||
c3de6b2b BB |
70 | # Load a local config |
71 | ||
72 | if [[ -s "${ZDOTDIR:-$HOME}/.zshrc.local" ]]; then | |
73 | source "${ZDOTDIR:-$HOME}/.zshrc.local" | |
74 | fi | |
75 | ||
c01804a4 RBR |
76 | if [[ -s "/opt/homebrew/bin/brew" ]]; then |
77 | export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH | |
78 | fi | |
79 | ||
80 | # Z | |
086f96e4 | 81 | if [[ -s "/opt/homebrew/bin/brew" ]]; then |
c01804a4 | 82 | . /opt/homebrew/etc/profile.d/z.sh |
086f96e4 | 83 | else |
ad7a214d RBR |
84 | if [[ -s "/usr/share/z/z.sh" ]]; then |
85 | . /usr/share/z/z.sh | |
86 | else | |
87 | . /usr/local/etc/profile.d/z.sh | |
88 | fi | |
cd3948f4 | 89 | fi |
fab93d61 RBR |
90 | |
91 | # ASDF | |
cd3948f4 | 92 | if ! command -v brew &> /dev/null; then |
ad7a214d RBR |
93 | if [[ -s "/opt/asdf-vm/asdf.sh" ]]; then |
94 | . /opt/asdf-vm/asdf.sh | |
95 | else | |
96 | . $HOME/.asdf/asdf.sh | |
97 | fi | |
cd3948f4 | 98 | else |
b945717b | 99 | . $(brew --prefix asdf)/libexec/asdf.sh |
cd3948f4 | 100 | fi |
2a55fbef RBR |
101 | |
102 | if [[ -s "~/.asdf/plugins/java/set-java-home.zsh" ]]; then | |
103 | . ~/.asdf/plugins/java/set-java-home.zsh | |
104 | fi |