]>
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" |
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 | |
31 | export NODE_PATH=/usr/local/lib/node_modules:$NODE_PATH | |
32 | export ANDROID_HOME=$HOME/Library/Android/sdk | |
33 | export ANDROID_NDK_HOME=$HOME/Library/Android/sdk/ndk-bundle | |
34 | export NVM_DIR=$HOME/.nvm | |
fa250235 BB |
35 | export PATH=$PATH:$HOME:/usr/local/opt/go/libexec/bin:${GOPATH//://bin:}/bin |
36 | export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_NDK_HOME:/Applications/calibre.app/Contents/MacOS | |
37 | ||
38 | # Editor. | |
1131e293 RBR |
39 | export EDITOR="nvim" |
40 | export VISUAL="nvim" | |
fa250235 BB |
41 | |
42 | # Python related variables | |
43 | export VIRTUAL_ENV_DISABLE_PROMPT=1 | |
44 | export WORKON_HOME=$HOME/.virtualenvs | |
45 | export PROJECT_HOME=$HOME/Projects | |
fab93d61 | 46 | export VIRTUALENVWRAPPER_PYTHON="/usr/local/bin/python3" |
fa250235 BB |
47 | |
48 | # GPG | |
49 | export GPG_TTY=$(tty) | |
50 | ||
51 | # FZF Config | |
cd3948f4 | 52 | export FZF_DEFAULT_COMMAND='/usr/bin/env rg --color never --files --hidden -g \!.git' |
fa250235 | 53 | export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500''' |
c01804a4 RBR |
54 | if [[ -s "/opt/homebrew/bin/brew" ]]; then |
55 | export FZF_VIM_PATH=/opt/homebrew/opt/fzf | |
56 | else | |
57 | export FZF_VIM_PATH=/usr/local/opt/fzf | |
58 | fi | |
30519082 | 59 | |
fa250235 BB |
60 | ################################################################################ |
61 | # SECRET ENV VARS!! | |
62 | ################################################################################ | |
63 | ||
64 | if [[ -s "${ZDOTDIR:-$HOME}/.secrets.zsh" ]]; then | |
65 | source "${ZDOTDIR:-$HOME}/.secrets.zsh" | |
66 | fi | |
67 | ||
c3de6b2b BB |
68 | # Load a local config |
69 | ||
70 | if [[ -s "${ZDOTDIR:-$HOME}/.zshrc.local" ]]; then | |
71 | source "${ZDOTDIR:-$HOME}/.zshrc.local" | |
72 | fi | |
73 | ||
c01804a4 RBR |
74 | eval $(/usr/libexec/path_helper -s) |
75 | ||
76 | if [[ -s "/opt/homebrew/bin/brew" ]]; then | |
77 | export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH | |
78 | fi | |
79 | ||
80 | # Z | |
81 | if ! command -v brew &> /dev/null; then | |
82 | . /usr/local/etc/profile.d/z.sh | |
83 | else | |
84 | . /opt/homebrew/etc/profile.d/z.sh | |
cd3948f4 | 85 | fi |
fab93d61 RBR |
86 | |
87 | # ASDF | |
cd3948f4 RBR |
88 | if ! command -v brew &> /dev/null; then |
89 | . $HOME/.asdf/asdf.sh | |
90 | else | |
91 | . $(brew --prefix asdf)/asdf.sh | |
92 | fi |