Skip to content

Instantly share code, notes, and snippets.

@doole
Last active December 31, 2015 22:29
Show Gist options
  • Save doole/8054107 to your computer and use it in GitHub Desktop.
Save doole/8054107 to your computer and use it in GitHub Desktop.
Current Sublime Text 3 preferences
[
{ "keys": ["ctrl+j"], "command": "join_lines" },
{ "keys": ["super+shift+a"], "command": "alignment" }
]
{
"installed_packages":
[
"AdvancedNewFile",
"Alignment",
"Anaconda",
"BeautifyRuby",
"Better CoffeeScript",
"CakePHP (Native)",
"DocBlockr",
"Emmet",
"GoSublime",
"Markdown Preview",
"Modific",
"Predawn",
"Sass",
"SideBarEnhancements",
"SublimeCodeIntel",
"SublimeLinter",
"SublimeLinter-coffeelint",
"SublimeLinter-csslint",
"SublimeLinter-flake8",
"SublimeLinter-jshint",
"SublimeLinter-json",
"SublimeLinter-pep8",
"SublimeLinter-php",
"SublimeLinter-pyflakes",
"SublimeLinter-ruby",
"Tag",
"Theme - Flatland",
"Theme - Soda",
"Tomorrow Color Schemes"
]
}
{
"auto_complete_commit_on_tab": false,
"color_scheme": "Packages/User/Tomorrow-Night (SL).tmTheme",
"detect_slow_plugins": false,
"findreplace_small": true,
"font_face": "Ubuntu Mono",
"font_size": 14.0,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"show_encoding": true,
"show_line_endings": true,
"sidebar_medium": true,
"tab_size": 4,
"tabs_small": true,
"theme": "predawn-DEV.sublime-theme",
"translate_tabs_to_spaces": false
}
{
"folders":
[
{
"follow_symlinks": true,
"path": "PATH/TO/PROJECT",
"folder_exclude_patterns": [
".bundle",
".hgcheck",
"tmp"
],
"file_exclude_patterns": [
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.class",
"*.hgtags",
"*.rspec"
]
}
]
}
{
"user": {
"debug": false,
"delay": 0.25,
"error_color": "D02000",
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
"gutter_theme_excludes": [],
"lint_mode": "background",
"linters": {
"csslint": {
"@disable": false,
"args": [],
"errors": "",
"excludes": [],
"ignore": "",
"warnings": ""
},
"flake8": {
"@disable": false,
"args": [],
"builtins": "",
"excludes": [],
"ignore": "",
"max-complexity": -1,
"max-line-length": null,
"select": ""
},
"json": {
"@disable": false,
"args": [],
"excludes": []
},
"pep8": {
"@disable": false,
"args": [],
"excludes": [],
"ignore": "",
"max-line-length": null,
"select": ""
},
"php": {
"@disable": false,
"args": [],
"excludes": []
},
"pyflakes": {
"@disable": false,
"args": [],
"excludes": []
},
"ruby": {
"@disable": false,
"args": [],
"excludes": []
}
},
"mark_style": "outline",
"no_column_highlights_line": false,
"paths": {
"linux": [],
"osx": [],
"windows": []
},
"python_paths": {
"linux": [],
"osx": [],
"windows": []
},
"rc_search_limit": 3,
"shell_timeout": 10,
"show_errors_on_save": false,
"show_marks_in_minimap": true,
"syntax_map": {
"html (django)": "html",
"html (rails)": "html",
"html 5": "html",
"php": "html",
"python django": "python"
},
"warning_color": "DDB700",
"wrap_find": true
}
}
{
// pep8 settings
"pep8": true,
"pep8_ignore": [
"E126",
"E128"
],
"pep8_max_line_length": 192
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment