- Fonts with Ligature Support
- Other Fonts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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') |