Skip to content

Instantly share code, notes, and snippets.

@spadgos
Created February 17, 2012 12:45
Show Gist options
  • Save spadgos/1853227 to your computer and use it in GitHub Desktop.
Save spadgos/1853227 to your computer and use it in GitHub Desktop.
Sublime settings
{
"caret_style": "phase",
"color_scheme": "Packages/User/Nonokai.tmTheme",
"default_new_file_syntax": "Packages/Javascript/Javascript.tmLanguage",
"dictionary": "Packages/Language - English/en_GB.dic",
"draw_white_space": "selection",
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.gitignore",
"*.gitmodules",
"*.pkgignore"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"node_modules",
".pygments-cache",
".sass-cache"
],
"font_face": "consolas",
"font_options":
[
"gray_antialias"
],
"font_size": 11,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"ignored_words":
[
"Javascript",
"Tyrtle",
"namespace"
],
"jsdocs_notation_map":
[
],
"jshint_options":
{
"asi": false,
"bitwise": true,
"boss": false,
"browser": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"evil": false,
"expr": false,
"forin": false,
"immed": true,
"indent": 2,
"latedef": true,
"laxbreak": true,
"loopfunc": false,
"newcap": true,
"noarg": true,
"noempty": true,
"nomen": false,
"nonew": true,
"onevar": false,
"plusplus": false,
"predef":
[
"module",
"require",
"exports",
"__dirname",
"__filename",
"console",
"process",
"setTimeout",
"setInterval",
"clearTimeout",
"clearInterval",
"window",
"$",
"Backbone",
"document",
"soundManager",
"jQuery",
"QUnit",
"equal",
"test",
"deepEqual",
"ok",
"raises",
"Class",
"requireText",
"requireCss",
"global",
"SC",
"_gaq",
"XMLSerializer"
],
"regexdash": false,
"regexp": false,
"scripturl": true,
"shadow": false,
"sub": true,
"supernew": true,
"trailing": false,
"undef": true,
"white": false
},
"margin": 0,
"match_brackets_content": false,
"overlay_scroll_bars": "enabled",
"pep8_ignore":
[
"E501",
"W293",
"W291"
],
"rulers":
[
120
],
"sublimelinter": "load-save",
"sublimelinter_delay": 2,
"sublimelinter_gutter_marks": true,
"tab_size": 2,
"theme": "Soda Dark.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment