forked from mathiasbynens/dotfiles
-
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.
- Loading branch information
Showing
6 changed files
with
136 additions
and
62 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,3 +1,7 @@ | ||
unalias rm | ||
|
||
alias rm="nocorrect rm" | ||
|
||
# Shortcuts | ||
alias c="cd ~/Code" | ||
alias g="git" | ||
|
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,7 @@ | ||
--- | ||
:benchmark: false | ||
:update_sources: true | ||
:backtrace: false | ||
:bulk_threshold: 1000 | ||
:verbose: true | ||
benchmark: false | ||
update_sources: true | ||
backtrace: false | ||
bulk_threshold: 1000 | ||
verbose: true | ||
install: --no-rdoc --no-ri | ||
update: --no-rdoc --no-ri |
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
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
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,58 @@ | ||
# Path to your oh-my-zsh configuration. | ||
ZSH=$HOME/.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="norm" | ||
|
||
# Set to this to use case-sensitive completion | ||
# CASE_SENSITIVE="true" | ||
|
||
# Comment this out to disable bi-weekly auto-update checks | ||
# DISABLE_AUTO_UPDATE="true" | ||
|
||
# Uncomment to change how many often would you like to wait before auto-updates occur? (in days) | ||
# export UPDATE_ZSH_DAYS=13 | ||
|
||
# Uncomment following line if you want to disable colors in ls | ||
# DISABLE_LS_COLORS="true" | ||
|
||
# Uncomment following line if you want to disable autosetting terminal title. | ||
# DISABLE_AUTO_TITLE="true" | ||
|
||
# Uncomment following line if you want red dots to be displayed while waiting for completion | ||
COMPLETION_WAITING_DOTS="true" | ||
|
||
# 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) | ||
plugins=(autojump brew bundler encode64 extract git github heroku knife nyan osx pow powder rbenv rake screen vagrant history-substring-search) | ||
|
||
source $ZSH/oh-my-zsh.sh | ||
|
||
unsetopt correct_all | ||
|
||
platform='unknown' | ||
unamestr=`uname` | ||
if [[ "$unamestr" == 'Linux' ]]; then | ||
platform='linux' | ||
elif [[ "$unamestr" == 'Darwin' ]]; then | ||
platform='darwin' | ||
fi | ||
|
||
export PATH=/usr/local/sbin:/usr/local/bin:$PATH | ||
|
||
# Load general files | ||
source ~/.aliases | ||
source ~/.exports | ||
source ~/.functions | ||
|
||
# Load platform specific files | ||
if [[ $platform == 'linux' ]]; then | ||
source ~/.aliases.linux | ||
elif [[ $platform == 'darwin' ]]; then | ||
source ~/.aliases.darwin | ||
source ~/.exports.darwin | ||
fi |
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