Skip to content

Instantly share code, notes, and snippets.

@RnbWd
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RnbWd/884f70c1bd6eb9ed1c93 to your computer and use it in GitHub Desktop.
Save RnbWd/884f70c1bd6eb9ed1c93 to your computer and use it in GitHub Desktop.
Sublime Plugins
/* I'm only listing most important in my main Settings-User, but you can find all potential options in the Settings Default */
/* Turning file indexing off in sublime 3 will prevent it from bringing your computer to a halt for 5 mins (and I have a decent mac) */
{
"enable_telemetry": "disabled",
"font_size": 16,
"trim_trailing_white_space_on_save": true,
"ensure_newline_at_eof_on_save": true,
"atomic_save": true,
"drag_text": false,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Markdown",
"Vintage"
],
"index_files": false,
"soda_classic_tabs": true,
"spell_check": false,
"tab_size": 2,
"translate_tabs_to_spaces": true,
}
/* Under preferences / package-settings / sublime linter/ User Settings */
{
"user": {
"debug": false,
"delay": 0.25,
"error_color": "D02000",
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Koloria/Koloria.gutter-theme",
"gutter_theme_excludes": [],
"lint_mode": "background",
"linters": {
"eslint": {
"@disable": false,
"args": [],
"excludes": []
},
"json": {
"@disable": false,
"args": [],
"excludes": [],
"strict": true
}
},
"mark_style": "stippled underline",
"no_column_highlights_line": false,
"passive_warnings": 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": false,
"syntax_map": {
"html (django)": "html",
"html (rails)": "html",
"html 5": "html",
"javascript (babel)": "javascript",
"php": "html",
"python django": "python"
},
"warning_color": "DDB700",
"wrap_find": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment