Skip to content

Instantly share code, notes, and snippets.

@pszpetkowski
Last active February 8, 2019 18:49
Show Gist options
  • Select an option

  • Save pszpetkowski/711bf4b4753fb451090bf4fe5689c3a8 to your computer and use it in GitHub Desktop.

Select an option

Save pszpetkowski/711bf4b4753fb451090bf4fe5689c3a8 to your computer and use it in GitHub Desktop.
My .zshrc config
autoload -Uz compinit promptinit
compinit
promptinit
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
source /etc/profile.d/vte.sh
fi
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
export EDITOR=nvim
alias vim=nvim
alias vimzsh='nvim ~/.zshrc'
export ZSH="$(antibody home)/https-COLON--SLASH--SLASH-github.com-SLASH-robbyrussell-SLASH-oh-my-zsh"
source <(antibody init)
antibody bundle < ~/.zsh_plugins
bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment