]>
Commit | Line | Data |
---|---|---|
fa250235 BB |
1 | ################################################################################ |
2 | # Load Functions | |
3 | ################################################################################ | |
4 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/git-info.zsh" | |
5 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/dotenv.zsh" | |
6 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/graphviz.zsh" | |
7 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/short-uptime.zsh" | |
7fdbf6d8 | 8 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/figlet-sample.zsh" |
a8d8a9d8 | 9 | source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/prettify-json.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 | |
27 | export TERM=xterm-256color-italic | |
28 | ||
29 | # Paths | |
30 | # export JAVA_HOME=$(/usr/libexec/java_home) # Enable if using JDK, otherwise disable for performance | |
31 | export GOPATH=$HOME/Projects/go | |
32 | export NODE_PATH=/usr/local/lib/node_modules:$NODE_PATH | |
33 | export ANDROID_HOME=$HOME/Library/Android/sdk | |
34 | export ANDROID_NDK_HOME=$HOME/Library/Android/sdk/ndk-bundle | |
35 | export NVM_DIR=$HOME/.nvm | |
fa250235 BB |
36 | export PATH=$PATH:$HOME:/usr/local/opt/go/libexec/bin:${GOPATH//://bin:}/bin |
37 | export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_NDK_HOME:/Applications/calibre.app/Contents/MacOS | |
38 | ||
39 | # Editor. | |
1131e293 RBR |
40 | export EDITOR="nvim" |
41 | export VISUAL="nvim" | |
fa250235 BB |
42 | |
43 | # Python related variables | |
44 | export VIRTUAL_ENV_DISABLE_PROMPT=1 | |
45 | export WORKON_HOME=$HOME/.virtualenvs | |
086f96e4 | 46 | export PROJECT_HOME=$HOME/Documents/projects |
fab93d61 | 47 | export VIRTUALENVWRAPPER_PYTHON="/usr/local/bin/python3" |
fa250235 BB |
48 | |
49 | # GPG | |
50 | export GPG_TTY=$(tty) | |
51 | ||
52 | # FZF Config | |
27561e82 RBR |
53 | [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh |
54 | ||
cd3948f4 | 55 | export FZF_DEFAULT_COMMAND='/usr/bin/env rg --color never --files --hidden -g \!.git' |
fa250235 | 56 | export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500''' |
c01804a4 RBR |
57 | if [[ -s "/opt/homebrew/bin/brew" ]]; then |
58 | export FZF_VIM_PATH=/opt/homebrew/opt/fzf | |
59 | else | |
3945b868 | 60 | if [[ -s "/usr/local/bin/brew" ]]; then |
071e5a53 RBR |
61 | export FZF_VIM_PATH=/usr/local/opt/fzf |
62 | else | |
63 | export FZF_VIM_PATH=/usr/share/doc/fzf/examples | |
64 | fi | |
c01804a4 | 65 | fi |
30519082 | 66 | |
fa250235 BB |
67 | ################################################################################ |
68 | # SECRET ENV VARS!! | |
69 | ################################################################################ | |
70 | ||
71 | if [[ -s "${ZDOTDIR:-$HOME}/.secrets.zsh" ]]; then | |
72 | source "${ZDOTDIR:-$HOME}/.secrets.zsh" | |
73 | fi | |
74 | ||
c3de6b2b BB |
75 | # Load a local config |
76 | ||
77 | if [[ -s "${ZDOTDIR:-$HOME}/.zshrc.local" ]]; then | |
78 | source "${ZDOTDIR:-$HOME}/.zshrc.local" | |
79 | fi | |
80 | ||
c01804a4 RBR |
81 | if [[ -s "/opt/homebrew/bin/brew" ]]; then |
82 | export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH | |
83 | fi | |
84 | ||
85 | # Z | |
086f96e4 | 86 | if [[ -s "/opt/homebrew/bin/brew" ]]; then |
c01804a4 | 87 | . /opt/homebrew/etc/profile.d/z.sh |
086f96e4 RBR |
88 | else |
89 | . /usr/local/etc/profile.d/z.sh | |
cd3948f4 | 90 | fi |
fab93d61 RBR |
91 | |
92 | # ASDF | |
cd3948f4 RBR |
93 | if ! command -v brew &> /dev/null; then |
94 | . $HOME/.asdf/asdf.sh | |
95 | else | |
96 | . $(brew --prefix asdf)/asdf.sh | |
97 | fi |