]>
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 | ||
37 | # Editor. | |
1131e293 RBR |
38 | export EDITOR="nvim" |
39 | export VISUAL="nvim" | |
fa250235 BB |
40 | |
41 | # Python related variables | |
42 | export VIRTUAL_ENV_DISABLE_PROMPT=1 | |
43 | export WORKON_HOME=$HOME/.virtualenvs | |
086f96e4 | 44 | export PROJECT_HOME=$HOME/Documents/projects |
fa250235 BB |
45 | |
46 | # GPG | |
47 | export GPG_TTY=$(tty) | |
48 | ||
49 | # FZF Config | |
27561e82 | 50 | [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh |
e4963fae RBR |
51 | [ -f /usr/share/doc/fzf/examples/key-bindings.zsh ] && source /usr/share/doc/fzf/examples/key-bindings.zsh |
52 | [ -f /usr/share/doc/fzf/examples/completion.zsh ] && source /usr/share/doc/fzf/examples/completion.zsh | |
27561e82 | 53 | |
cd3948f4 | 54 | export FZF_DEFAULT_COMMAND='/usr/bin/env rg --color never --files --hidden -g \!.git' |
fa250235 | 55 | export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500''' |
c01804a4 RBR |
56 | if [[ -s "/opt/homebrew/bin/brew" ]]; then |
57 | export FZF_VIM_PATH=/opt/homebrew/opt/fzf | |
58 | else | |
3945b868 | 59 | if [[ -s "/usr/local/bin/brew" ]]; then |
071e5a53 RBR |
60 | export FZF_VIM_PATH=/usr/local/opt/fzf |
61 | else | |
62 | export FZF_VIM_PATH=/usr/share/doc/fzf/examples | |
63 | fi | |
c01804a4 | 64 | fi |
30519082 | 65 | |
fa250235 BB |
66 | ################################################################################ |
67 | # SECRET ENV VARS!! | |
68 | ################################################################################ | |
69 | ||
70 | if [[ -s "${ZDOTDIR:-$HOME}/.secrets.zsh" ]]; then | |
71 | source "${ZDOTDIR:-$HOME}/.secrets.zsh" | |
72 | fi | |
73 | ||
c3de6b2b BB |
74 | # Load a local config |
75 | ||
76 | if [[ -s "${ZDOTDIR:-$HOME}/.zshrc.local" ]]; then | |
77 | source "${ZDOTDIR:-$HOME}/.zshrc.local" | |
78 | fi | |
79 | ||
c01804a4 RBR |
80 | if [[ -s "/opt/homebrew/bin/brew" ]]; then |
81 | export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH | |
82 | fi | |
83 | ||
84 | # Z | |
086f96e4 | 85 | if [[ -s "/opt/homebrew/bin/brew" ]]; then |
c01804a4 | 86 | . /opt/homebrew/etc/profile.d/z.sh |
086f96e4 | 87 | else |
ad7a214d RBR |
88 | if [[ -s "/usr/share/z/z.sh" ]]; then |
89 | . /usr/share/z/z.sh | |
90 | else | |
91 | . /usr/local/etc/profile.d/z.sh | |
92 | fi | |
cd3948f4 | 93 | fi |
fab93d61 RBR |
94 | |
95 | # ASDF | |
cd3948f4 | 96 | if ! command -v brew &> /dev/null; then |
ad7a214d RBR |
97 | if [[ -s "/opt/asdf-vm/asdf.sh" ]]; then |
98 | . /opt/asdf-vm/asdf.sh | |
99 | else | |
100 | . $HOME/.asdf/asdf.sh | |
101 | fi | |
cd3948f4 | 102 | else |
b945717b | 103 | . $(brew --prefix asdf)/libexec/asdf.sh |
cd3948f4 | 104 | fi |
2a55fbef RBR |
105 | |
106 | if [[ -s "~/.asdf/plugins/java/set-java-home.zsh" ]]; then | |
107 | . ~/.asdf/plugins/java/set-java-home.zsh | |
108 | fi |