summaryrefslogtreecommitdiffstats
path: root/.vscode/direct_bt.code-workspace_example
blob: 4654f99895ac361e74ee733a15ac2ab3e9e26677 (plain)
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
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"
    ]
  }
}