-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
zshrc with some oh-my-zsh and scm_breeze
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
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'; |
This file contains 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
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 |