| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- {
- "workbench.colorTheme": "Gruvbox Dark (Hard)",
- "xmlTools.enforcePrettySelfClosingTagOnFormat": true,
- "editor.minimap.enabled": false,
- "terminal.integrated.shell.windows": "c:/Program Files/PowerShell/7/pwsh.exe",
- "terminal.integrated.fontWeight": "1",
- "editor.fontSize": 16,
- "editor.fontWeight": "1",
- "workbench.editor.showTabs": true,
- "workbench.activityBar.visible": true,
- "workbench.colorCustomizations": {
- "editorCursor.foreground": "#00ff33",
- "editor.lineHighlightBackground": "#111144"
- },
- "workbench.statusBar.visible": true,
- "editor.lineNumbers": "on",
- "C_Cpp.clang_format_style": "{ BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0, NamespaceIndentation: All}",
- "C_Cpp.vcFormat.newLine.beforeOpenBrace.block": "sameLine",
- "C_Cpp.vcFormat.newLine.beforeOpenBrace.type": "sameLine",
- "C_Cpp.vcFormat.newLine.beforeOpenBrace.function": "sameLine",
- "C_Cpp.vcFormat.space.pointerReferenceAlignment": "left",
- "C_Cpp.clang_format_sortIncludes": false,
- "C_Cpp.vcFormat.indent.namespaceContents": true,
- "editor.cursorStyle": "block",
- "window.zoomLevel": 1,
- "editor.tabCompletion": "on",
- "todohighlight.isEnable": true,
- "todohighlight.keywords": [
- {
- "text": "TODO:",
- "color": "red",
- "backgroundColor": "rgba(0,0,0,0)",
- "overviewRulerColor": "rgba(0,0,0,0)"
- },
- {
- "text": "TODO(travis):",
- "color": "red",
- "backgroundColor": "rgba(0,0,0,0)",
- "overviewRulerColor": "rgba(0,0,0,0)"
- },
- {
- "text": "HACK:",
- "color": "#ff6600",
- "backgroundColor": "rgba(0,0,0,0)",
- "overviewRulerColor": "rgba(0,0,0,0)"
- },
- {
- "text": "NOTE:",
- "color": "green",
- "backgroundColor": "rgba(0,0,0,0)",
- "overviewRulerColor": "rgba(0,0,0,0)"
- }
- ],
- "todohighlight.defaultStyle": {
- "color": "red",
- //"backgroundColor": "#ffab00",
- "overviewRulerColor": "rgba(0,0,0,0)",
- "isWholeLine": false,
- },
- "files.associations": {
- "test.h": "c",
- "vulkan.h": "c",
- "vulkan_core.h": "c",
- "vk_platform.h": "c",
- "type_traits": "c",
- "typeinfo": "c",
- "windowsx.h": "c",
- "vulkan_platform.h": "c",
- "renderer_frontend.h": "c",
- "iosfwd": "c",
- "tuple": "cpp",
- "utility": "cpp",
- "kmemory.h": "c",
- "defines.h": "c",
- "vulkan_types.h": "c",
- "clock.h": "c",
- "kstring.h": "c",
- "logger.h": "c",
- "stb_image.h": "c",
- "vector": "c",
- "xstring": "c",
- "xutility": "c",
- "iterator": "c",
- "initializer_list": "c",
- "loader_utils.h": "c",
- "kmath.h": "c",
- "random": "c",
- "string_view": "c",
- "limits": "c",
- "sstream": "c",
- "filesystem.h": "c",
- "atomic": "c",
- "*.tcc": "c",
- "iomanip": "c",
- "istream": "c",
- "ostream": "c",
- "camera_system.h": "c",
- "render_view_skybox.h": "c",
- "darray.h": "c",
- "stb_truetype.h": "c",
- "vulkan_pipeline.h": "c",
- "platform.h": "c",
- "console.h": "c",
- "debug_console.h": "c",
- "vulkan_main.h": "c",
- "vulkan_backend.h": "c",
- "input.h": "c",
- "ui_text.h": "c",
- "xmemory": "c",
- "geometry_utils.h": "c",
- "shader_system.h": "c",
- "renderer_types.h": "c"
- },
- // File copyright documentation tag. Array of strings will be converted to one line per element. Can template {year}.
- "doxdocgen.file.copyrightTag": [
- "@copyright Kohi Game Engine is Copyright (c) Travis Vroman 2021-{year}"
- ],
- "doxdocgen.file.versionTag": "@version 1.0",
- "doxdocgen.generic.authorEmail": "[email protected]",
- "doxdocgen.generic.authorName": "Travis Vroman",
- "doxdocgen.generic.authorTag": "@author {author} ({email})",
- // The order to use for the file comment. Values can be used multiple times. Valid values are shown in default setting.
- "doxdocgen.file.fileOrder": [
- "file",
- "author",
- "brief",
- "version",
- "date",
- "empty",
- "copyright",
- "empty",
- "custom"
- ],
- }
|