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
color twilight | |
set guifont=Monaco:h12.50 | |
set cc=80 | |
let g:NERDTreeWinPos = "right" | |
set spell | |
set cursorline | |
" strip trailing whitespace on save | |
autocmd BufWritePre * :%s/\s\+$//e |
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
# from http://www.tech-recipes.com/rx/1264/generate-passwords-with-openssl/ | |
openssl rand -base64 12 |
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
brew install libksba | |
brew tap homebrew/dupes | |
brew install apple-gcc42 | |
curl -L https://get.rvm.io | bash -s stable | |
rvm pkg install openssl | |
rvm pkg install libyaml | |
rvm pkg install iconv |