Last active
September 29, 2015 18:18
-
-
Save EHLOVader/1645408 to your computer and use it in GitHub Desktop.
My user settings for SublimeText2 (and ST3) which includes all fonts from http://www.codinghorror.com/blog/2007/10/revisiting-programming-fonts.html and links to download them when needed. Also added an extended monokai scheme and great theme for enhancing SublimeText
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
{ | |
/** | |
* Monokai Extended Color Scheme | |
* Author: Jon Schlinkert | |
* Link: https://github.com/jonschlinkert/sublime-monokai-extended | |
*/ | |
"color_scheme": "Packages/Monokai Extended/Monokai Extended.tmTheme", | |
/** | |
* DownedRainbow | |
* Author: Drew Wilson | |
* Link: https://github.com/geedew/DownedRainbow | |
*/ | |
// "color_scheme": "Packages/DownedRainbow/DownedRainbow.tmTheme" | |
/** | |
* Flatland Theme | |
* Author: ThinkPixelLab | |
* Link: https://github.com/thinkpixellab/flatland | |
*/ | |
"theme": "Flatland Dark.sublime-theme", | |
//"color_scheme": "Packages/Theme - Flatland/Flatland Dark.tmTheme" | |
// Monokai color scheme (SublimeText's default) with Flatland background color | |
//"color_scheme": "Packages/Theme - Flatland/Flatland Monokai.tmTheme", | |
// square file tabs instead of rounded corners | |
//"flatland_square_tabs": true, | |
// Ability to change row height of sidebar tree | |
// Options: xsmall, small, medium, large, xlarge | |
//"flatland_sidebar_tree_xsmall" : true | |
/** | |
* Nil | |
* Author: Noel Cower | |
* Link: https://github.com/nilium/st2-nil-theme | |
*/ | |
//"theme": "Nil.sublime-theme", | |
//"theme": "Ayin.sublime-theme", | |
//"color_scheme": "Theme - Nil/Tubnil.tmTheme", | |
//"color_scheme": "Theme - Nil/Tubnil Bright.tmTheme", | |
//"color_scheme": "Theme - Nil/Big Duo.tmTheme", | |
/** | |
*Consolas | |
* Author: Microsoft | |
* Link: http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=17879 | |
*/ | |
// "font_face": "Consolas", | |
/** | |
*Inconsolata | |
* Author: Raph Levien | |
* Link: http://www.levien.com/type/myfonts/inconsolata.html | |
*/ | |
// "font_face": "Inconsolata", | |
/** | |
* Monaco | |
* Author: | |
* Link: http://www.webdevkungfu.com/textmate-envy-aka-monaco-font-for-windows/ | |
*/ | |
// "font_face": "Monaco", | |
/** | |
* Envy Code R | |
* Author: Damien Guard | |
* Link: http://damieng.com/blog/2008/05/26/envy-code-r-preview-7-coding-font-released | |
*/ | |
// "font_face": "Envy Code R", | |
/** | |
* Vera Mono | |
* Author: GNOME | |
* Link: http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/1.10/ | |
*/ | |
// "font_face": "Vera Sans Mono", | |
/** | |
* Pragmata [PAID] | |
* Author: Fabrizio Schaivl | |
* Link: http://www.fsd.it/fonts/pragmatapro.htm | |
*/ | |
// "font_face": "Pragmata", //Paid | |
/** | |
* Courier | |
* Author: IBM? | |
*/ | |
// "font_face": "Courier New", | |
/** | |
* Lucida Typewriter | |
* Author: Microsoft | |
* Link: http://www.codinghorror.com/blog/files/LucidaTypewriter.zip | |
*/ | |
// "font_face": "Lucida Sans Typewriter", | |
/** | |
* The font of the gods | |
* Author: Microsoft | |
* Link: http://www.microsoft.com/typography/fonts/family.aspx?FID=3 | |
*/ | |
// "font_face": "Comic Sans MS", | |
/** | |
* Andale Mono | |
* Author: Microsoft | |
* Link: http://sourceforge.net/projects/corefonts/files/ | |
*/ | |
// "font_face": "Andale Mono", | |
/** | |
* Source Code Pro | |
* Author: Adobe | |
* Link: https://github.com/adobe/source-code-pro | |
*/ | |
// "font_face": "Source Code Pro", | |
/** | |
* Anonymous Pro | |
* Author: Mark Simonson | |
* Link: http://www.marksimonson.com/fonts/view/anonymous-pro | |
*/ | |
"font_face": "Anonymous Pro", | |
"font_size": 11.0, | |
"tab_size": 4, | |
"word_wrap": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment