Last active
April 25, 2018 17:59
-
-
Save realsby/775462caf4ba0f8d146ecfc029fb0bb0 to your computer and use it in GitHub Desktop.
SublimeText3 Settings
This file contains 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
Favorite Packages | |
[ | |
"All Autocomplete", | |
"Anaconda", | |
"BracketHighlighter", | |
"Cobalt2 Flat Theme", | |
"GitGutter", | |
"Markdown Extended", | |
"Package Control", | |
"Python Breakpoints", | |
"SideBarEnhancements", | |
"Theme - Cobalt2" | |
] | |
Sublime -> Preferences -> Settings | |
{ | |
"color_scheme": "Packages/Theme - Cobalt2/cobalt2.tmTheme", | |
"font_size": 14, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"theme": "Cobalt2.sublime-theme" | |
} | |
Sublime -> Preferences -> Key Bindings | |
[ | |
{ "keys": ["super+shift+/"], "command": "toggle_comment", "args": { "block": true } }, | |
{ "keys": ["ctrl+shift+i"], "command": "build", "args": {"select": true} }, | |
{ "keys": ["super+shift+b"], "command": "toggle_breakpoint" }, | |
] | |
Sublime -> Preferences -> Package Settings -> Anaconda -> Settings User | |
{"pep8_max_line_length": 120,} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment