123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- {
- "C_Cpp.autocomplete": "Default",
- "C_Cpp.intelliSenseEngine": "Default",
- "C_Cpp.preferredPathSeparator": "Forward Slash",
- "C_Cpp.workspaceParsingPriority": "highest",
- "C_Cpp.enhancedColorization": "Disabled",
- "debug.toolBarLocation": "docked",
- "editor.tabSize": 4,
- "editor.insertSpaces": false,
- "editor.formatOnSave": true,
- "files.encoding": "utf8",
- "files.trimTrailingWhitespace": true,
- "files.eol": "\n",
- "files.exclude": {
- // "Makefile": true,
- // "build.sh": true,
- "gmon.out": true,
- // "bin/": true,
- // "build/": true,
- "**/*.7z": true,
- "**/*.rar": true,
- "**/Thumbs.db": true
- },
- "files.associations": {
- "*.json": "jsonc",
- "*.stats": "cpp",
- "*.desktop": "properties",
- ".clang-format": "yaml",
- "array": "cpp",
- "atomic": "cpp",
- "*.tcc": "cpp",
- "bitset": "cpp",
- "cctype": "cpp",
- "chrono": "cpp",
- "clocale": "cpp",
- "cmath": "cpp",
- "codecvt": "cpp",
- "condition_variable": "cpp",
- "cstdarg": "cpp",
- "cstddef": "cpp",
- "cstdint": "cpp",
- "cstdio": "cpp",
- "cstdlib": "cpp",
- "cstring": "cpp",
- "ctime": "cpp",
- "cwchar": "cpp",
- "cwctype": "cpp",
- "deque": "cpp",
- "list": "cpp",
- "unordered_map": "cpp",
- "vector": "cpp",
- "exception": "cpp",
- "algorithm": "cpp",
- "filesystem": "cpp",
- "functional": "cpp",
- "iterator": "cpp",
- "map": "cpp",
- "memory": "cpp",
- "memory_resource": "cpp",
- "numeric": "cpp",
- "optional": "cpp",
- "random": "cpp",
- "ratio": "cpp",
- "regex": "cpp",
- "set": "cpp",
- "string": "cpp",
- "string_view": "cpp",
- "system_error": "cpp",
- "tuple": "cpp",
- "type_traits": "cpp",
- "utility": "cpp",
- "fstream": "cpp",
- "future": "cpp",
- "initializer_list": "cpp",
- "iomanip": "cpp",
- "iosfwd": "cpp",
- "iostream": "cpp",
- "istream": "cpp",
- "limits": "cpp",
- "mutex": "cpp",
- "new": "cpp",
- "ostream": "cpp",
- "sstream": "cpp",
- "stdexcept": "cpp",
- "streambuf": "cpp",
- "thread": "cpp",
- "typeinfo": "cpp",
- "variant": "cpp"
- },
- "terminal.integrated.shell.windows": "C:/Program Files/Git/bin/bash.exe",
- "terminal.integrated.env.windows": {
- "Path": "C:/mingw32/bin;C:/SFML-2.5.1/bin"
- },
- "terminal.integrated.env.linux": {
- "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
- },
- "terminal.integrated.env.osx": {
- "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
- },
- "workbench.colorCustomizations": {
- "statusBar.background": "#8ac242",
- "statusBar.foreground": "#ffffff",
- "statusBar.debuggingBackground": "#5e9517",
- "statusBar.debuggingForeground": "#ffffff",
- },
- "[applescript]": {
- "files.encoding": "utf8"
- }
- }
|