Skip to content

Instantly share code, notes, and snippets.

@ryanzyy
Last active April 7, 2020 04:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanzyy/b88a290c786b7b3431a72321514ab6c9 to your computer and use it in GitHub Desktop.
Save ryanzyy/b88a290c786b7b3431a72321514ab6c9 to your computer and use it in GitHub Desktop.
export EDITOR='nvim'
export ZSH=$HOME/.oh-my-zsh
ZSH_THEME="risto"
plugins=(git gitignore systemd)
source $ZSH/oh-my-zsh.sh
bindkey -v
bindkey ^O vi-cmd-mode
bindkey ^R history-incremental-search-backward
bindkey ^A beginning-of-line
bindkey ^E end-of-line
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
if [[ -f "$HOME/.cargo/env" ]]; then
source "$HOME/.cargo/env"
fi
if [[ -f "$HOME/.zshrc.local.sh" ]]; then
source "$HOME/.zshrc.local.sh"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment