Skip to content

Instantly share code, notes, and snippets.

View al3rez's full-sized avatar

Alireza Bashiri al3rez

View GitHub Profile
@al3rez
al3rez / vimrc minimal
Created December 19, 2015 19:55
vimrc minimal
set nocompatible
set laststatus=2
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set wildmode=longest,list
set wildmenu
set autoindent
set smartindent
@al3rez
al3rez / comma-first-var.js
Created November 20, 2015 07:45 — forked from isaacs/comma-first-var.js
A better coding convention for lists and object literals in JavaScript
// See comments below.
// This code sample and justification brought to you by
// Isaac Z. Schlueter, aka isaacs
// standard style
var a = "ape",
b = "bat",
c = "cat",
d = "dog",