diff options
author | Sven Gothel <[email protected]> | 2022-11-27 10:43:22 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-11-27 10:43:22 +0100 |
commit | 6075d14736bdc87fc1b2e4a5a9ac31bd07b11c78 (patch) | |
tree | 95c0f13c4e4c30472b6707b6d22f14eaa09e3276 /.vscode/direct_bt.code-workspace_example | |
parent | 0cab133c4ced3155e9e8eef8ddf12ccc57e156bd (diff) |
clang-tidy and vscode: Provision w/ initial config (tested by jaulib)
Diffstat (limited to '.vscode/direct_bt.code-workspace_example')
-rw-r--r-- | .vscode/direct_bt.code-workspace_example | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/.vscode/direct_bt.code-workspace_example b/.vscode/direct_bt.code-workspace_example new file mode 100644 index 00000000..4654f998 --- /dev/null +++ b/.vscode/direct_bt.code-workspace_example @@ -0,0 +1,82 @@ +{ + "folders": [ + { + "name": "direct_bt", + "path": "/usr/local/projects/jausoft/direct_bt" + } + ], + "settings": { + // "security.workspace.trust.untrustedFiles": "open", + // "window.openFilesInNewWindow": "on", + // "window.zoomLevel": 0.5, + // "editor.fontSize": 11.5, + // "editor.lineHeight": 1.22, + // "editor.fontWeight": "normal", + // "editor.fontFamily": "'DejaVu Sans Mono', 'monospace', monospace", + // "editor.guides.indentation": false, + // "editor.renderWhitespace": "none", + // "editor.cursorStyle": "line", + // "editor.semanticTokenColorCustomizations": { + // }, + // "editor.tokenColorCustomizations": { + // "[Visual Studio Light]": {} + // }, + // "workbench.colorTheme": "Visual Studio Light", + "workbench.editor.labelFormat": "medium", + "java.jdt.ls.java.home": "/usr/lib/jvm/java-17-openjdk-amd64", + // "java.format.settings.url": "/usr/local/projects/jausoft/eclipse/settings/org.eclipse.my.java.prefs", + // "java.settings.url": "/usr/local/projects/jausoft/eclipse/settings/org.eclipse.jdt.core.prefs", + // "java.format.settings.profile": "GoogleStyle", + "java.codeGeneration.useBlocks": true, + "java.inlayHints.parameterNames.enabled": "literals", + "java.configuration.runtimes": [ + { + "name": "JavaSE-11", + "path": "/usr/lib/jvm/java-11-openjdk-amd64", + }, + { + "name": "JavaSE-17", + "path": "/usr/lib/jvm/java-17-openjdk-amd64", + "default": true + }, + ], + "[cpp]": { + "breadcrumbs.showKeys": true, + "breadcrumbs.showArrays": true, + "editor.hover.enabled": true, + "breadcrumbs.showFunctions": true, + "editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd" + }, + "clangd.onConfigChanged": "restart", + "clangd.checkUpdates": true, + // "clangd.path": "/home/sven/.config/VSCodium/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/15.0.3/clangd_15.0.3/bin/clangd", + "clangd.arguments": [ + "--background-index" + ], + "files.associations": { + "*.hpp": "cpp", + "*.cpp": "cpp", + "*.cxx": "cpp" + }, + "ShortcutMenuBar.compareWithSaved": false, + "ShortcutMenuBar.openFilesList": false, + "ShortcutMenuBar.saveAll": true, + "ShortcutMenuBar.toggleTerminal": false, + "ShortcutMenuBar.userButton01Command": "clangd.inlayHints.toggle", + "ShortcutMenuBar.userButton02Command": "clangd.memoryUsage", + "ShortcutMenuBar.userButton03Command": "workbench.action.reloadWindow", + "ShortcutMenuBar.userButton04Command": "clangd.restart", + "clang-tidy.buildPath": "${workspaceFolder}/build-vscode", + }, + "extensions": { + "recommendations": [ + "llvm-vs-code-extensions.vscode-clangd", "twxs.cmake", "ms-vscode.cmake-tools", + "notskm.clang-tidy", + "redhat.java", "vscjava.vscode-java-test", "vscjava.vscode-java-debug", + "vscjava.vscode-maven", + "cschlosser.doxdocgen", + "jerrygoyal.shortcut-menu-bar" + ] + } +} + |