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
set lines=35 | |
set columns=90 | |
set guioptions-=m | |
set guioptions-=T | |
set guioptions-=r | |
set guioptions-=R | |
set guioptions-=l | |
set guioptions-=L | |
set bg=dark | |
colorscheme molokai |
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
-e x264 -q 20.0 -r 29.97 --pfr -a 1,1 -E faac,copy:ac3 -B 160,160 -6 dpl2,auto -R Auto,Auto -D 0.0,0.0 -f mp4 -4 -X 1280 --loose-anamorphic -m |
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
#woman loads manpages from man.cx in w3m, since you sometimes don't get them via homebrew (for good reason: http://goo.gl/zvwvp) | |
#use `woman w3m` to view the manpage for w3m. | |
#use `woman 2 wait` to view the page for "wait" from section 2 if you really need this for some reason, I dunno, whatevs | |
brew install w3m; echo "woman() { if [ \$# -eq 2 ]; then w3m \"http://man.cx/\$2(\$1)\"; else w3m \"http://man.cx/\$1\"; fi; }" >> ~/.bashrc; source ~/.bashrc |
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
nmap <F2> :!open %:p -a Shoes<CR> |
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
#Nunca Mas Mad Libs by p.holby | |
#[email protected] | |
#I think I'm doing this right putting this info here I don't know I am new at this | |
#(Editor's note: more information available at http://sorryeveryone.tumblr.com/post/5758964399 ) | |
Shoes.app :height => 750, :width => 800, :title => "Nunca Mas Mad Libs" do | |
background "#E6B8B8".."#A18181" | |
title "National Commission on the Disappearance of Persons 1984 | |
Mad Libs!", :top => 25, | |
:align => "center", |
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
" add this to your .gvimrc. | |
" thanks to Logan for the obvious trick to achieving | |
" this that I was looking straight past! | |
if has("gui_macvim") | |
macmenu &File.New\ Window key=<nop> | |
map <D-n> :!mvim<CR><CR> | |
endif |
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
set statusline+=%#warningmsg# | |
set statusline+=%{SyntasticStatuslineFlag()} | |
set statusline+=%* | |
let g:syntastic_enable_signs=1 | |
let g:syntastic_auto_loc_list=1 | |
run SyntasticEnable ruby | |
run SyntasticEnable javascript | |
run SyntasticEnable coffee | |
run SyntasticEnable haml | |
run SyntasticEnable perl |
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
--- | |
gameName: TANSTAAFL | |
gameDescription: ...or is there? | |
version: "1" | |
events: | |
- id: honeyOnTheCatHair | |
type: replaceItems | |
items: | |
- honey | |
- catHair |
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
cd() { | |
if [[ $@ == '-' ]]; then | |
builtin cd "$@" > /dev/null # We'll handle pwd. | |
else | |
builtin cd "$@" | |
fi | |
# you could use git rev-parse below instead but it'll trigger in all directories in the repo | |
if ls .git &> /dev/null; then | |
echo -e " \033[1;34m"`~/bin/spark-action.rb . 26`"\033[0m" | |
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
statusbar = { | |
# formats: | |
# when using {templates}, the template is shown only if its argument isnt | |
# empty unless no argument is given. for example {sb} is printed always, | |
# but {sb $T} is printed only if $T isnt empty. | |
items = { | |
# start/end text in statusbars | |
barstart = "{sbstart}"; | |
barend = "{sbend}"; |
OlderNewer