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
# git | |
alias g="git" | |
alias ga="git add" | |
alias gb="git branch" | |
alias gbn="git checkout -b" | |
alias gc="git commit -v" | |
alias gco="git checkout" | |
alias gd="git diff" | |
alias gf="git fetch" | |
alias gl="git pull" |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>KeepAlive</key> | |
<false/> | |
<key>Label</key> | |
<string>batteryAlert</string> | |
<key>LowPriorityIO</key> | |
<true/> |
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
### INSTALLATION NOTES ### | |
# 1. Install Homebrew (https://github.com/mxcl/homebrew) | |
# 2. brew install zsh | |
# 3. Install OhMyZsh (https://github.com/robbyrussell/oh-my-zsh) | |
# 4. brew install reattach-to-user-namespace --wrap-pbcopy-pbpaste && brew link reattach-to-user-namespace | |
# 5. Install iTerm2 (https://code.google.com/p/iterm2/downloads/list) | |
# 6. In iTerm2 preferences for your profile set: | |
# Character Encoding: Unicode (UTF-8) | |
# Report Terminal Type: xterm-256color | |
# 7. Get scripts for status-right |
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
# cd + virtualenv activation + ls + git status | |
function cd() { | |
# default cd | |
builtin cd $1; | |
# virtualenv activation | |
GIT_DIR=`git rev-parse --git-dir 2> /dev/null` | |
if [[ $? == 0 ]] | |
then | |
if [[ -f $GIT_DIR/../.env/bin/activate ]] |
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
hi clear | |
if exists("syntax_on") | |
syntax reset | |
endif | |
let g:colors_name = 'magnet' | |
set background=dark | |
set cursorline | |
hi Normal ctermfg=black ctermbg=black |
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
// realpath: User/Default (OSX).sublime-keymap | |
[ | |
{ | |
"keys": ["#"] | |
, "command": "insert_snippet" | |
, "args": {"contents": "{{$0}}"} | |
, "context": | |
[ | |
{ | |
"key": "setting.auto_match_enabled" |
NewerOlder