Last active
February 8, 2019 18:49
-
-
Save pszpetkowski/711bf4b4753fb451090bf4fe5689c3a8 to your computer and use it in GitHub Desktop.
My .zshrc config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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