X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/0beb5ea29e9d920085fb5afb344dc65faaea9a1a..40cd14f7baeb0eeba7e54518cdf218a3f9d6f4c6:/runcoms/zshrc diff --git a/runcoms/zshrc b/runcoms/zshrc index 2cd5ce2..780b526 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -5,6 +5,7 @@ source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/git-info.zsh" source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/dotenv.zsh" source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/graphviz.zsh" source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/short-uptime.zsh" +source "${ZDOTDIR:-$HOME}/.dotfiles/zsh/functions/figlet-sample.zsh" ################################################################################ # Load Modules @@ -44,15 +45,18 @@ export VISUAL="vim" export VIRTUAL_ENV_DISABLE_PROMPT=1 export WORKON_HOME=$HOME/.virtualenvs export PROJECT_HOME=$HOME/Projects -export VIRTUALENVWRAPPER_PYTHON="/usr/local/bin/python" +export VIRTUALENVWRAPPER_PYTHON="/usr/local/bin/python3" # GPG export GPG_TTY=$(tty) # FZF Config -export FZF_DEFAULT_COMMAND='/usr/local/bin/rg --color never --files --hidden -g \!.git' +export FZF_DEFAULT_COMMAND='/usr/bin/env rg --color never --files --hidden -g \!.git' export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | head -500''' +# Z +. /usr/local/etc/profile.d/z.sh + ################################################################################ # SECRET ENV VARS!! ################################################################################ @@ -67,4 +71,13 @@ if [[ -s "${ZDOTDIR:-$HOME}/.zshrc.local" ]]; then source "${ZDOTDIR:-$HOME}/.zshrc.local" fi -eval $(/usr/libexec/path_helper -s) +if command -v brew &> /dev/null; then + eval $(/usr/libexec/path_helper -s) +fi + +# ASDF +if ! command -v brew &> /dev/null; then + . $HOME/.asdf/asdf.sh +else + . $(brew --prefix asdf)/asdf.sh +fi