]> git.r.bdr.sh - rbdr/dotfiles/blame_incremental - runcoms/zshrc
Add editorconfig to vim
[rbdr/dotfiles] / runcoms / zshrc
... / ...
CommitLineData
1################################################################################
2# Load Functions
3################################################################################
4source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/git-info.zsh"
5source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/dotenv.zsh"
6source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/graphviz.zsh"
7source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/short-uptime.zsh"
8source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/figlet-sample.zsh"
9
10################################################################################
11# Load Modules
12################################################################################
13source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/environment.zsh"
14source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/editor.zsh"
15source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/history.zsh"
16source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/directory.zsh"
17source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/prompt.zsh"
18source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/vendor/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
19source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/completion.zsh"
20source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/modules/aliases.zsh"
21
22################################################################################
23# ENV VARIABLES
24################################################################################
25# Terminal related
26export TERM=xterm-256color-italic
27
28# Paths
29# export JAVA_HOME=$(/usr/libexec/java_home) # Enable if using JDK, otherwise disable for performance
30export GOPATH=$HOME/Projects/go
31export NODE_PATH=/usr/local/lib/node_modules:$NODE_PATH
32export ANDROID_HOME=$HOME/Library/Android/sdk
33export ANDROID_NDK_HOME=$HOME/Library/Android/sdk/ndk-bundle
34export NVM_DIR=$HOME/.nvm
35export PATH=$PATH:$HOME:/usr/local/opt/go/libexec/bin:${GOPATH//://bin:}/bin
36export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_NDK_HOME:/Applications/calibre.app/Contents/MacOS
37
38# Editor.
39export EDITOR="nvim"
40export VISUAL="nvim"
41
42# Python related variables
43export VIRTUAL_ENV_DISABLE_PROMPT=1
44export WORKON_HOME=$HOME/.virtualenvs
45export PROJECT_HOME=$HOME/Projects
46export VIRTUALENVWRAPPER_PYTHON="/usr/local/bin/python3"
47
48# GPG
49export GPG_TTY=$(tty)
50
51# FZF Config
52export FZF_DEFAULT_COMMAND='/usr/bin/env rg --color never --files --hidden -g \!.git'
53export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500'''
54if [[ -s "/opt/homebrew/bin/brew" ]]; then
55 export FZF_VIM_PATH=/opt/homebrew/opt/fzf
56else
57 export FZF_VIM_PATH=/usr/local/opt/fzf
58fi
59
60################################################################################
61# SECRET ENV VARS!!
62################################################################################
63
64if [[ -s "${ZDOTDIR:-$HOME}/.secrets.zsh" ]]; then
65 source "${ZDOTDIR:-$HOME}/.secrets.zsh"
66fi
67
68# Load a local config
69
70if [[ -s "${ZDOTDIR:-$HOME}/.zshrc.local" ]]; then
71 source "${ZDOTDIR:-$HOME}/.zshrc.local"
72fi
73
74eval $(/usr/libexec/path_helper -s)
75
76if [[ -s "/opt/homebrew/bin/brew" ]]; then
77 export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH
78fi
79
80# Z
81if ! command -v brew &> /dev/null; then
82 . /usr/local/etc/profile.d/z.sh
83else
84 . /opt/homebrew/etc/profile.d/z.sh
85fi
86
87# ASDF
88if ! command -v brew &> /dev/null; then
89 . $HOME/.asdf/asdf.sh
90else
91 . $(brew --prefix asdf)/asdf.sh
92fi