]> git.r.bdr.sh - rbdr/dotfiles/blame - runcoms/zshrc
Add figlet sample
[rbdr/dotfiles] / runcoms / zshrc
CommitLineData
fa250235
BB
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"
7fdbf6d8 8source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/figlet-sample.zsh"
fa250235
BB
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=/usr/local/bin:/usr/local/sbin:$PATH
36export PATH=$PATH:$HOME/Library/Python/2.7/bin
37export PATH=$PATH:$HOME:/usr/local/opt/go/libexec/bin:${GOPATH//://bin:}/bin
38export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_NDK_HOME:/Applications/calibre.app/Contents/MacOS
39
40# Editor.
41export EDITOR="vim"
42export VISUAL="vim"
43
44# Python related variables
45export VIRTUAL_ENV_DISABLE_PROMPT=1
46export WORKON_HOME=$HOME/.virtualenvs
47export PROJECT_HOME=$HOME/Projects
48export VIRTUALENVWRAPPER_PYTHON="/usr/local/bin/python"
49
50# GPG
51export GPG_TTY=$(tty)
52
53# FZF Config
54export FZF_DEFAULT_COMMAND='/usr/local/bin/rg --color never --files --hidden -g \!.git'
55export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500'''
56
57################################################################################
58# SECRET ENV VARS!!
59################################################################################
60
61if [[ -s "${ZDOTDIR:-$HOME}/.secrets.zsh" ]]; then
62 source "${ZDOTDIR:-$HOME}/.secrets.zsh"
63fi
64
c3de6b2b
BB
65# Load a local config
66
67if [[ -s "${ZDOTDIR:-$HOME}/.zshrc.local" ]]; then
68 source "${ZDOTDIR:-$HOME}/.zshrc.local"
69fi
70
fa250235 71eval $(/usr/libexec/path_helper -s)