Skip to content

Instantly share code, notes, and snippets.

View guipmourao's full-sized avatar
🏠
Working from home

Guilherme Mourão guipmourao

🏠
Working from home
View GitHub Profile
@jeffrafter
jeffrafter / .bashrc
Created February 4, 2013 17:21
Basic Bash
export HISTCONTROL=ignoredups
export INPUTRC="~/.inputrc"
export EDITOR='open -a /Applications/MacVim.app -f'
shopt -s checkwinsize
shopt -s cdspell
shopt -s histappend
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
@jeffrafter
jeffrafter / nginx.conf
Created September 20, 2011 15:58
Nginx proxy pass to localhost:3000 for development
worker_processes 1;
error_log /usr/local/var/log/nginx.error.log;
events {
worker_connections 1024;
}
http {
include mime.types;