Skip to content

Instantly share code, notes, and snippets.

@vinayak-garg
vinayak-garg / .vimrc
Last active December 23, 2015 03:59
My .vimrc Enjoy! :)
syntax sync fromstart
syntax on
"set background=dark
set ruler " show the line number on the bar
set more " use more prompt
set autoread " watch for file changes
set number " line numbers
set hidden
set noautowrite " don't automagically write on :next
set lazyredraw " don't redraw when don't have to
@vinayak-garg
vinayak-garg / bigint.cpp
Created November 3, 2012 17:13
Big integer class
#include <vector>
#include <cstdlib>
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
typedef long long LL;