Skip to content

Instantly share code, notes, and snippets.

@bAmrish
bAmrish / Sublime_Packages.md
Last active June 26, 2016 19:33
This gist describes List of Packages to Install when for a Fresh Sublime Install
/**
* Run this script on the console to add jquery to a web page.
* This is useful if you want to debug an external website which does not have jquery.
**/
//Create a script tag for holding jQuery
var script = document.createElement('script');
//Set the src attribute of the script tag to jquery CDN file.
script.setAttribute('src', 'https://code.jquery.com/jquery-2.1.4.min.js');
@bAmrish
bAmrish / .vimrc
Last active August 29, 2015 14:05
.vimrc
"call ToggleVerbose()
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/vimfiles/bundle/Vundle.vim
let path='~/vimfiles/bundle'
call vundle#begin(path)
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')