Last active
September 29, 2015 04:20
-
-
Save bangedorrunt/0702361d850002836ee8 to your computer and use it in GitHub Desktop.
Sublime Text Config
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
{ | |
"cmd": ["python", "-u", "$file"], | |
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", | |
"selector": "source.python" | |
} |
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
{ | |
"bold_folder_labels": true, | |
"caret_style": "solid", | |
"detect_identation": true, | |
"draw_indent_guides": true, | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Fira Mono", | |
"font_size": 18, | |
"highlight_modified_tabs": true, | |
"overlay_scroll_bars": false, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"wide_caret": true, | |
"word_wrap": true, | |
"color_scheme": "Packages/Oceanic Next Color Scheme/Oceanic Next.tmTheme", | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"theme": "Broceanic.sublime-theme" | |
} |
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
{ | |
"folders": | |
[ | |
{ | |
"path": "src", | |
"folder_exclude_patterns": ["backup"], | |
"follow_symlinks": true | |
}, | |
{ | |
"path": "docs", | |
"name": "Documentation", | |
"file_exclude_patterns": ["*.css"] | |
} | |
], | |
"settings": | |
{ | |
"tab_size": 8 | |
}, | |
"build_systems": | |
[ | |
{ | |
"name": "List", | |
"shell_cmd": "ls -l" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment