dotfiles/zshrc

40 lines
1.2 KiB
Bash
Raw Normal View History

2017-05-04 07:03:27 -07:00
# Path to your oh-my-zsh installation.
2017-05-12 10:33:17 -07:00
export ZSH=$HOME/.oh-my-zsh
2017-05-04 07:03:27 -07:00
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="jispwoso"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# 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)
source $ZSH/oh-my-zsh.sh
# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
export EDITOR='nvim'
# else
# export EDITOR='mvim'
# fi
# Compilation flags
# export ARCHFLAGS="-arch x86_64"
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
export ANDROID_SDK=$HOME/dev/android/android-sdk
export ANDROID_NDK=$HOME/dev/android/android-ndk-r13b
export GOPATH=$HOME/dev/go
alias l="ls -la"
alias ll="ls -l"
alias la="ls -la"
alias zshconfig="$EDITOR ~/.zshrc"
alias ohmyzsh="$EDITOR ~/.oh-my-zsh"