Skip to content

Instantly share code, notes, and snippets.

@bangedorrunt
Last active September 29, 2015 04:20
Show Gist options
  • Save bangedorrunt/0702361d850002836ee8 to your computer and use it in GitHub Desktop.
Save bangedorrunt/0702361d850002836ee8 to your computer and use it in GitHub Desktop.
Sublime Text Config
{
"cmd": ["python", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
{
"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"
}
{
"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