Skip to content

Instantly share code, notes, and snippets.

set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
@prabhakhar
prabhakhar / prompt.zsh
Created December 15, 2014 22:38
zsh Prompt
autoload colors && colors
# cheers, @ehrenmurdick
# http://github.com/ehrenmurdick/config/blob/master/zsh/prompt.zsh
if (( $+commands[git] ))
then
git="$commands[git]"
else
git="/usr/bin/git"
fi
@prabhakhar
prabhakhar / mem-leak-warn.js
Created June 21, 2012 01:13
Possible EventEmitter memory leak detected.
var http = require('http');
var options = {
host : 'www.nodejs.org',
port : 80,
method : 'HEAD',
path : '/api/http.html'
};