Skip to content

Instantly share code, notes, and snippets.

@lc512k
Last active August 29, 2015 14:08
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 lc512k/322864a338893224c828 to your computer and use it in GitHub Desktop.
Save lc512k/322864a338893224c828 to your computer and use it in GitHub Desktop.
Sublime Text 3 setup
Package control
https://sublime.wbond.net/installation
Sublime Linter
cmd+shift+p Install SublimeLinter
cmd+shift+p Install SublimeLinter-jshint
cmd+shift+p Install SublimeLinter-jscs
cmd+shift+p Install SublimeLinter-html-tidy
Sublime Text > Preferences > Package Settings > Sublime Linter > Settings - User
{
"user": {
"debug": true,
"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": ""
},
"htmltidy": {
"@disable": false,
"args": [],
"excludes": []
},
"jscs": {
"@disable": false,
"args": [
"--config=/Users/goncalomorais/Development/mobileweb/frontend/common/build/.jscs.json"
],
"excludes": []
},
"jshint": {
"@disable": false,
"args": [
"--config=/Users/goncalomorais/Development/mobileweb/frontend/common/build/.jshintrc"
],
"excludes": []
}
},
"mark_style": "solid underline",
"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
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment