Skip to content

Instantly share code, notes, and snippets.

@dnasca
Created September 19, 2015 23:56
Show Gist options
  • Select an option

  • Save dnasca/3a5bd37ca8ce0698826f to your computer and use it in GitHub Desktop.

Select an option

Save dnasca/3a5bd37ca8ce0698826f to your computer and use it in GitHub Desktop.
general sublime config
{
"ignored_packages":
[
"Vintage"
],
//theme stuff
"color_scheme": "Packages/User/SublimeLinter/Oceanic Next (SL).tmTheme",
"theme": "Broceanic.sublime-theme",
//general
"detect_indentation": false,
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"scroll_past_end": true,
"tab_size": 2,
"word_wrap": true,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"rulers":
[
80
],
"syntax_map":
{
"html 5": "html",
"jsx": "javascript"
},
//babel snippets
"keys": ["ctrl+shift+,"],
"command": "insert_snippet",
"args": {
"name": "Packages/Babel Snippets/react_wrap.sublime-snippet"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment