-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
81 lines (81 loc) · 2.46 KB
/
settings.json
File metadata and controls
81 lines (81 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"files.exclude": {
"**/obj": true,
"**/.git": true,
"**/.vscode": true,
"**/bin": true,
},
"search.exclude": {
"**/obj": true,
"**/.git": true,
"**/.vscode": true,
"**/bin": true,
},
"C_Cpp.files.exclude": {
"**/obj": true,
"**/.git": true,
"**/.vscode": true,
"**/bin": true,
},
"extensions.ignoreRecommendations": true,
"telemetry.telemetryLevel": "off",
"extensions.autoCheckUpdates": false,
"update.mode": "none",
"extensions.autoUpdate": false,
"vim.useCtrlKeys": true,
"vim.handleKeys": {
"<C-d>": false,
"<C-f>": false,
"<C-w>": false,
"<C-b>": false,
"<C-n>": false,
"<C-j>": false,
"<C-s>": false,
"<C-t>": false,
"<C-p>": false,
},
"vim.useSystemClipboard": false,
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["J"],
"commands": ["workbench.action.previousEditor"]
},
{
"before": ["K"],
"commands": ["workbench.action.nextEditor"]
}
],
"settingsSync.keybindingsPerPlatform": false,
"C_Cpp.clang_format_fallbackStyle": "GNU",
"editor.lineNumbers": "relative",
"files.autoSave": "onFocusChange",
"terminal.integrated.defaultProfile.linux": "bash",
"git.openRepositoryInParentFolders": "never",
"files.associations": {
"*.tpp": "cpp"
},
"terminal.integrated.enablePersistentSessions": false,
"C_Cpp.autocompleteAddParentheses": true,
"C_Cpp.default.cppStandard": "c++98",
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
},
"editor.minimap.enabled": false,
"extensions.experimental.affinity": {
"vscodevim.vim": 1,
"ms-vscode.cpptools": 1,
},
"editor.stickyScroll.enabled": false,
"cpp.creator.headerFileNamePreset": "{{*CLASSNAME*}}.hpp",
"cpp.creator.setPath": true,
"cpp.creator.headerFileContentPreset": "#ifndef {{*CLASSNAMEUPPER*}}_H\n#define {{*CLASSNAMEUPPER*}}_H\n\nclass {{*CLASSNAME*}}\n{\npublic:\n {{*CLASSNAME*}} ();\n ~{{*CLASSNAME*}} ();\n {{*CLASSNAME*}} (const {{*CLASSNAME*}} & src);\n\nprivate:\n\n};\n\n#endif",
"cpp.creator.sourceFileContentPreset": "#include \"{{*HEADERFILENAME*}}\"\n\n{{*CLASSNAME*}}::{{*CLASSNAME*}} ()\n{\n\n}\n\n{{*CLASSNAME*}}::{{*CLASSNAME*}} (const {{*CLASSNAME*}} & src)\n{\n (void) src;\n}\n\n{{*CLASSNAME*}}::~{{*CLASSNAME*}} ()\n{\n\n}",
"C_Cpp.intelliSenseCachePath": "${workspaceFolder}/.vscode/",
"C_Cpp.intelliSenseCacheSize": 400,
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.renderWhitespace": "all",
}