Created
October 10, 2019 16:23
-
-
Save abelorian/341fd0ed4a03dffc46ee522ee8be4d50 to your computer and use it in GitHub Desktop.
My zshrc
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
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/abelorian/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="robbyrussell" | |
# Uncomment the following line to use case-sensitive completion. | |
# CASE_SENSITIVE="true" | |
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ | |
# Example format: plugins=(rails git textmate ruby lighthouse) | |
# Add wisely, as too many plugins slow down shell startup. | |
plugins=(git) | |
# User configuration | |
# export PATH="/usr/bin:/bin:/usr/sbin:/sbin:$PATH" | |
# export MANPATH="/usr/local/man:$MANPATH" | |
source $ZSH/oh-my-zsh.sh | |
# You may need to manually set your language environment | |
# export LANG=en_US.UTF-8 | |
# Preferred editor for local and remote sessions | |
# if [[ -n $SSH_CONNECTION ]]; then | |
# export EDITOR='vim' | |
# else | |
# export EDITOR='mvim' | |
# fi | |
# Compilation flags | |
# export ARCHFLAGS="-arch x86_64" | |
# ssh | |
# export SSH_KEY_PATH="~/.ssh/dsa_id" | |
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh | |
# The next line updates PATH for the Google Cloud SDK. | |
if [ -f '/Users/abelorian/Desktop/welcu/google-cloud-sdk/path.zsh.inc' ]; then source '/Users/abelorian/Desktop/welcu/google-cloud-sdk/path.zsh.inc'; fi | |
# The next line enables shell command completion for gcloud. | |
if [ -f '/Users/abelorian/Desktop/welcu/google-cloud-sdk/completion.zsh.inc' ]; then source '/Users/abelorian/Desktop/welcu/google-cloud-sdk/completion.zsh.inc'; fi | |
alias be='bundle exec' | |
export PATH="$HOME/.rbenv/bin:$PATH" | |
export PATH="$PATH:/usr/local/mysql-5.7.23-macos10.13-x86_64/bin" | |
eval "$(rbenv init -)" | |
export PATH="/usr/local/opt/postgresql@10/bin:$PATH" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment