Last active
December 14, 2015 21:28
-
-
Save jokull/5150974 to your computer and use it in GitHub Desktop.
Sublime Text 2 settings for Python development with nice linting colors
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
Show hidden characters
{ | |
"auto_complete": false, | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/User/Tomorrow-Night.tmTheme", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"find_selected_text": true, | |
"fold_buttons": false, | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
"_build", | |
"dist", | |
"build", | |
"site", | |
"venv", | |
"node_modules" | |
], | |
"font_face": "Source Code Pro", | |
"font_size": 14.0, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"pep8_ignore": | |
[ | |
"E501", | |
"E128", | |
"E712" | |
], | |
"rulers": | |
[ | |
80 | |
], | |
"scroll_past_end": true, | |
"tab_size": 2, | |
"theme": "Soda Light.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true | |
} |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>comment</key> | |
<string>http://chriskempson.com</string> | |
<key>name</key> | |
<string>Tomorrow Night</string> | |
<key>settings</key> | |
<array> | |
<dict> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#1D1F21</string> | |
<key>caret</key> | |
<string>#AEAFAD</string> | |
<key>foreground</key> | |
<string>#C5C8C6</string> | |
<key>invisibles</key> | |
<string>#4B4E55</string> | |
<key>lineHighlight</key> | |
<string>#282A2E</string> | |
<key>selection</key> | |
<string>#373B41</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Comment</string> | |
<key>scope</key> | |
<string>comment</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#969896</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Foreground</string> | |
<key>scope</key> | |
<string>keyword.operator.class, constant.other, source.php.embedded.line</string> | |
<key>settings</key> | |
<dict> | |
<key>fontStyle</key> | |
<string></string> | |
<key>foreground</key> | |
<string>#CED1CF</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Variable, String Link, Regular Expression, Tag Name</string> | |
<key>scope</key> | |
<string>variable, support.other.variable, string.other.link, string.regexp, entity.name.tag, entity.other.attribute-name, meta.tag, declaration.tag</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#CC6666</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Number, Constant, Function Argument, Tag Attribute, Embedded</string> | |
<key>scope</key> | |
<string>constant.numeric, constant.language, support.constant, constant.character, variable.parameter, punctuation.section.embedded, keyword.other.unit</string> | |
<key>settings</key> | |
<dict> | |
<key>fontStyle</key> | |
<string></string> | |
<key>foreground</key> | |
<string>#DE935F</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Class, Support</string> | |
<key>scope</key> | |
<string>entity.name.class, entity.name.type.class, support.type, support.class</string> | |
<key>settings</key> | |
<dict> | |
<key>fontStyle</key> | |
<string></string> | |
<key>foreground</key> | |
<string>#F0C674</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>String, Symbols, Inherited Class, Markup Heading</string> | |
<key>scope</key> | |
<string>string, constant.other.symbol, entity.other.inherited-class, markup.heading</string> | |
<key>settings</key> | |
<dict> | |
<key>fontStyle</key> | |
<string></string> | |
<key>foreground</key> | |
<string>#B5BD68</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Operator, Misc</string> | |
<key>scope</key> | |
<string>keyword.operator, constant.other.color</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#8ABEB7</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Function, Special Method, Block Level</string> | |
<key>scope</key> | |
<string>entity.name.function, meta.function-call, support.function, keyword.other.special-method, meta.block-level</string> | |
<key>settings</key> | |
<dict> | |
<key>fontStyle</key> | |
<string></string> | |
<key>foreground</key> | |
<string>#81A2BE</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Keyword, Storage</string> | |
<key>scope</key> | |
<string>keyword, storage, storage.type, entity.name.tag.css</string> | |
<key>settings</key> | |
<dict> | |
<key>fontStyle</key> | |
<string></string> | |
<key>foreground</key> | |
<string>#B294BB</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Invalid</string> | |
<key>scope</key> | |
<string>invalid</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#DF5F5F</string> | |
<key>fontStyle</key> | |
<string></string> | |
<key>foreground</key> | |
<string>#CED2CF</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Separator</string> | |
<key>scope</key> | |
<string>meta.separator</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#82A3BF</string> | |
<key>foreground</key> | |
<string>#CED2CF</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Deprecated</string> | |
<key>scope</key> | |
<string>invalid.deprecated</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#B798BF</string> | |
<key>fontStyle</key> | |
<string></string> | |
<key>foreground</key> | |
<string>#CED2CF</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Diff foreground</string> | |
<key>scope</key> | |
<string>markup.inserted.diff, markup.deleted.diff, meta.diff.header.to-file, meta.diff.header.from-file</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#FFFFFF</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Diff insertion</string> | |
<key>scope</key> | |
<string>markup.inserted.diff, meta.diff.header.to-file</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#718c00</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Diff deletion</string> | |
<key>scope</key> | |
<string>markup.deleted.diff, meta.diff.header.from-file</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#c82829</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Diff header</string> | |
<key>scope</key> | |
<string>meta.diff.header.from-file, meta.diff.header.to-file</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#FFFFFF</string> | |
<key>background</key> | |
<string>#4271ae</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Diff range</string> | |
<key>scope</key> | |
<string>meta.diff.range</string> | |
<key>settings</key> | |
<dict> | |
<key>fontStyle</key> | |
<string>italic</string> | |
<key>foreground</key> | |
<string>#3e999f</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>SublimeLinter Warning Outline</string> | |
<key>scope</key> | |
<string>sublimelinter.outline.warning</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#83949655</string> | |
<key>foreground</key> | |
<string>#83949655</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>SublimeLinter Warning Underline</string> | |
<key>scope</key> | |
<string>sublimelinter.underline.warning</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#b58900</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>SublimeLinter Violation Outline</string> | |
<key>scope</key> | |
<string>sublimelinter.outline.violation</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#657b83</string> | |
<key>foreground</key> | |
<string>#657b83</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>SublimeLinter Violation Underline</string> | |
<key>scope</key> | |
<string>sublimelinter.underline.violation</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#cb4b16</string> | |
</dict> | |
</dict> | |
</array> | |
<key>uuid</key> | |
<string>F96223EB-1A60-4617-92F3-D24D4F13DB09</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment