Skip to content

Instantly share code, notes, and snippets.

@devoncarew
Last active August 29, 2015 14:05
Show Gist options
  • Save devoncarew/8ebf2f7cf120321e2955 to your computer and use it in GitHub Desktop.
Save devoncarew/8ebf2f7cf120321e2955 to your computer and use it in GitHub Desktop.
spark preferences
// Eric's original
{
"stripWhitespaceOnSave": true
"indentation":{
"default":{
"spaces": true,
"character_width": 4
},
"dart":{
"spaces": true,
"character_width": 2
},
...
}
}
// slight tweaks
{
"stripWhitespaceOnSave": true,
"indentUsingTabs": true,
"indentWith": 2,
"fileTypes" : {
"*.cc,*.h,*.c": "c_cpp",
".project" : "xml",
"*.xml,build.zap" : "xml",
...
},
"c_cpp": {
"indentUsingTabs": false,
"indentWith": 4
},
"go": {
"indentUsingTabs": true,
"indentWith": 4
},
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment