Last active
May 18, 2016 12:16
-
-
Save fsevero/68aee64643cdfcc430d426aedf6e0ed0 to your computer and use it in GitHub Desktop.
Preferencias pessoais do sublime text 3
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
Show hidden characters
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"DocBlockr", | |
"Emmet", | |
"EncodingHelper", | |
"FileDiffs", | |
"Git", | |
"LineEndings", | |
"Package Control", | |
"PhpDoc", | |
"PhpNamespace", | |
"PhpSimpleRefactor", | |
"Refactor", | |
"SideBarEnhancements", | |
"Symfony2 Snippets" | |
] | |
} |
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
// https://packagecontrol.io/installation | |
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) |
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
{ | |
"bold_folder_labels": true, | |
"copy_with_empty_selection": false, | |
"default_line_ending": "unix", | |
"ensure_newline_at_eof_on_save": true, | |
"font_size": 8, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"show_encoding": true, | |
"show_line_endings": true, | |
"trim_trailing_white_space_on_save": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment