stella/.vscode/settings.json

31 lines
852 B
JSON
Raw Normal View History

2016-10-10 22:22:38 +00:00
// Platzieren Sie Ihre Einstellungen in dieser Datei, um Standard- und Benutzereinstellungen zu überschreiben.
{
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"src/**/*.o": true
},
"editor.trimAutoWhitespace": true,
"editor.useTabStops": false,
"C_Cpp.intelliSenseEngine": "Default",
2017-11-26 22:24:05 +00:00
"files.insertFinalNewline": true,
"files.associations": {
2017-12-01 22:17:16 +00:00
"__functional_base": "cpp",
"array": "cpp",
2018-09-13 21:23:21 +00:00
"istream": "cpp",
"locale": "cpp",
"memory": "cpp",
2018-09-13 21:23:21 +00:00
"thread": "cpp",
"tuple": "cpp",
2018-12-16 23:30:42 +00:00
"utility": "cpp",
"*.tcc": "cpp",
"functional": "cpp",
"iomanip": "cpp",
"__cxx_version": "cpp"
2017-11-26 22:24:05 +00:00
}
}