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
| module Delayed | |
| class Worker | |
| def start | |
| say "Starting job worker" | |
| trap('TERM') { $exit = true; raise SignalException.new("TERM")} | |
| trap('INT') { say 'Exiting...'; $exit = true } | |
| loop do | |
| result = nil |
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
| call pathogen#infect() | |
| set nocompatible | |
| let mapleader = "," | |
| set history=1000 | |
| set formatoptions="" | |
| set undofile | |
| set undoreload=10000 | |
| set undodir=~/.vim/undo// |
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
| [alias] | |
| lg = "!git log -n 100 --graph --date=short --pretty=tformat:'%h||%cd||%an||%d||%s' | gfix" | |
| l = "!git log -n 100 --reverse --date=short --pretty=tformat:'%h||%cd||%an||%d||%s' | gfix" | |
| ll = "!git log -n 1000 --reverse --date=short --pretty=tformat:'%h||%cd||%an||%d||%s' | gfix" |
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
| filetype off | |
| call pathogen#runtime_append_all_bundles() | |
| call pathogen#helptags() | |
| au! BufRead,BufNewFile *.haml setfiletype haml | |
| set nocompatible | |
| set vb t_vb= | |
| let mapleader = "," | |
| set history=1000 |
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
| [user] | |
| name = Eric Mueller | |
| email = emueller@emcien.com | |
| [core] | |
| editor = mvim | |
| whitespace = -trailing-space | |
| pager = | |
| excludesfile = /Users/nevinera/.gitignore |
NewerOlder