Last active
May 19, 2016 18:28
-
-
Save jeanlescure/7a238679fb302a408b90b5a7a26331a8 to your computer and use it in GitHub Desktop.
My Sublime Config
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
/* | |
Package control: | |
import urllib.request,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by) | |
*/ | |
// Installed Material Theme | |
// Font: Monaco | |
{ | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"font_face": "Monaco", | |
"font_size": 16, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"theme": "Material-Theme-Darker.sublime-theme", | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme", | |
"overlay_scroll_bars": "enabled", | |
"line_padding_top": 3, | |
"line_padding_bottom": 3, | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"indent_guide_options": [ "draw_normal", "draw_active" ], // Highlight active indent | |
"font_options": [ "gray_antialias" ], // For retina Mac | |
"material_theme_accent_lime": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment