Skip to content

Commit

Permalink
zshrc with some oh-my-zsh and scm_breeze
Browse files Browse the repository at this point in the history
  • Loading branch information
essmahr committed Jan 19, 2016
1 parent aeb16da commit bbe05e1
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .exports
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Make Sublime the default editor.
export EDITOR='subl';

#for subl command
export PATH=$PATH:$HOME/bin

# Prefer US English and use UTF-8.
export LANG='en_US.UTF-8';
export LC_ALL='en_US.UTF-8';
31 changes: 31 additions & 0 deletions .zshrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
export ZSH=/Users/smahr/.oh-my-zsh

ZSH_THEME="agnoster"

# User configuration for agnoster theme
DEFAULT_USER="smahr"

# Enable command auto-correction.
ENABLE_CORRECTION="true"

# display red dots whilst waiting for completion.
COMPLETION_WAITING_DOTS="true"

# plugins=(rails git textmate ruby lighthouse)

export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
# export MANPATH="/usr/local/man:$MANPATH"

source $ZSH/oh-my-zsh.sh

# Source relevent dotfiles
for file in ~/.{aliases,exports,functions}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file";
done;
unset file;

# TODO: where do these go
[ -s "/Users/smahr/.scm_breeze/scm_breeze.sh" ] && source "/Users/smahr/.scm_breeze/scm_breeze.sh"

export NVM_DIR="/Users/smahr/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm

0 comments on commit bbe05e1

Please sign in to comment.