]> git.r.bdr.sh - rbdr/dotfiles/blob - runcoms/zshrc
Update karabiner
[rbdr/dotfiles] / runcoms / zshrc
1 ################################################################################
2 # Load Functions
3 ################################################################################
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"
7 source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/figlet-sample.zsh"
8 source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/prettify-json.zsh"
9 source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/status.zsh"
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
28
29 # Paths
30 # export JAVA_HOME=$(/usr/libexec/java_home) # Enable if using JDK, otherwise disable for performance
31 export XDG_CONFIG_HOME=$HOME/.config
32 export GOPATH=$HOME/projects/go
33 export ANDROID_HOME=$HOME/Library/Android/sdk
34 export ANDROID_NDK_HOME=$HOME/Library/Android/sdk/ndk-bundle
35 export PATH=$PATH:$HOME:${GOPATH//://bin:}/bin
36 export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_NDK_HOME:/Applications/calibre.app/Contents/MacOS
37
38 # GPG
39 export GPG_TTY=$(tty)
40
41 # FZF Config
42 [ -x "$(command -v fzf)" ] && source <(fzf --zsh)
43
44 export FZF_DEFAULT_COMMAND='/usr/bin/env rg --color never --files --hidden -g \!.git'
45 export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500'''
46
47 ################################################################################
48 # SECRET ENV VARS!!
49 ################################################################################
50
51 if [[ -s "${ZDOTDIR:-$HOME}/.secrets.zsh" ]]; then
52 source "${ZDOTDIR:-$HOME}/.secrets.zsh"
53 fi
54
55 # Load a local config
56
57 if [[ -s "${ZDOTDIR:-$HOME}/.zshrc.local" ]]; then
58 source "${ZDOTDIR:-$HOME}/.zshrc.local"
59 fi
60
61 if [[ -s "/opt/homebrew/bin/brew" ]]; then
62 # Brew Setup
63 export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH
64 export FZF_VIM_PATH=/opt/homebrew/opt/fzf
65 . /opt/homebrew/etc/profile.d/z.sh
66 . /opt/homebrew/opt/asdf/libexec/asdf.sh
67 else
68 # Z (Linux)
69 if [[ -s "/usr/libexec/z.sh" ]]; then
70 . /usr/libexec/z.sh
71 else
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
77 fi
78
79 # ASDF (Linux)
80 if [[ -s "/opt/asdf-vm/asdf.sh" ]]; then
81 . /opt/asdf-vm/asdf.sh
82 else
83 . $HOME/.asdf/asdf.sh
84 fi
85 fi
86
87 # ASDF Java
88 if [[ -s "~/.asdf/plugins/java/set-java-home.zsh" ]]; then
89 . ~/.asdf/plugins/java/set-java-home.zsh
90 fi