Skip to content

Instantly share code, notes, and snippets.

@sillyslux
Last active November 28, 2018 14:20
Show Gist options
  • Save sillyslux/7748084143a83de956006ccb8b6aed44 to your computer and use it in GitHub Desktop.
Save sillyslux/7748084143a83de956006ccb8b6aed44 to your computer and use it in GitHub Desktop.
{
"configurations": [
{
"name": "Mac",
"includePath": [
"/usr/include",
"/usr/local/include",
"${workspaceFolder}"
],
"defines": [],
"intelliSenseMode": "clang-x64",
"browse": {
"path": [
"/usr/include",
"/usr/local/include",
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": ""
},
"macFrameworkPath": [
"/System/Library/Frameworks",
"/Library/Frameworks"
]
},
{
"name": "Linux",
"includePath": [
"${workspaceFolder}",
"/usr/include/c++/6",
"/usr/include/x86_64-linux-gnu/c++/6",
"/usr/include/c++/6/backward",
"/usr/local/include",
"/usr/lib/llvm-3.8/lib/clang/3.8.1/include",
"/usr/include/x86_64-linux-gnu",
"/usr/include"
],
"defines": [],
"intelliSenseMode": "clang-x64",
"browse": {
"path": [
"${workspaceFolder}",
"/usr/include/c++/6",
"/usr/include/x86_64-linux-gnu/c++/6",
"/usr/include/c++/6/backward",
"/usr/local/include",
"/usr/lib/llvm-3.8/lib/clang/3.8.1/include",
"/usr/include/x86_64-linux-gnu",
"/usr/include"
],
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": ""
},
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17"
},
{
"name": "Win32",
"includePath": [
"C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include",
"${workspaceFolder}"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"intelliSenseMode": "msvc-x64",
"browse": {
"path": [
"C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include/*",
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": ""
}
}
],
"version": 4
}
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "fluxbox",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/fluxbox",
"args": [
"-rc",
"~/.altfluxbox/init",
"-log",
"~/.altfluxbox/log"
// "-no-toolbar",
// "-no-slit"
],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [
{
// "name": "LANG",
// "value": "de_DE.UTF-8"
// }, {
"name": "DISPLAY",
"value": ":1"
}
],
"externalConsole": true,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "fluxbox-remote",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/fluxbox-remote",
"args": [
// "reconfigure",
"ident"
],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [
{
"name": "DISPLAY",
"value": ":1"
}
],
"externalConsole": true,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
{
"files.exclude": {
"**/*.o": true
},
"editor.formatOnSave": true,
"files.associations": {
"iostream": "cpp"
},
"C_Cpp.formatting": "Disabled",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment