Skip to content

Instantly share code, notes, and snippets.

@qis
Last active July 19, 2026 08:07
Show Gist options
  • Select an option

  • Save qis/1868bc26199ff1df27cd36f6ff5c1220 to your computer and use it in GitHub Desktop.

Select an option

Save qis/1868bc26199ff1df27cd36f6ff5c1220 to your computer and use it in GitHub Desktop.
{
// Style
"editor.tabSize": 8,
"editor.indentSize": 2,
"editor.detectIndentation": false,
"editor.copyWithSyntaxHighlighting": true,
"editor.wordWrap": "on",
"editor.wordWrapColumn": 120,
"editor.rulers": [ 120 ],
"files.eol": "\n",
// Fonts
"editor.fontFamily": "DejaVuSansM Nerd Font Mono",
"editor.fontSize": 14,
"terminal.integrated.fontFamily": "DejaVuSansM Nerd Font Mono",
"terminal.integrated.fontSize": 14,
// General
"chat.agent.enabled": false,
"chat.disableAIFeatures": true,
"editor.dragAndDrop": false,
"editor.folding": false,
"editor.inlayHints.enabled": "off",
"editor.largeFileOptimizations": false,
"editor.links": false,
"editor.minimap.scale": 1,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderFinalNewline": "dimmed",
"editor.renderLineHighlight": "gutter",
"editor.renderWhitespace": "selection",
"editor.smoothScrolling": true,
"editor.stickyScroll.enabled": false,
"editor.unicodeHighlight.allowedLocales": { "ru": true },
"editor.unicodeHighlight.ambiguousCharacters": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": true,
"files.defaultLanguage": "markdown",
"files.hotExit": "off",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"security.allowedUNCHosts": [
"dev",
"test",
"wsl.localhost",
"10.11.12.2",
"dev-athena-dynamic.avsw.ru"
],
"security.workspace.trust.banner": "always",
"security.workspace.trust.enabled": false,
"security.workspace.trust.untrustedFiles": "open",
"telemetry.telemetryLevel": "off",
"update.showReleaseNotes": false,
"window.commandCenter": true,
"window.closeWhenEmpty": false,
"window.customTitleBarVisibility": "windowed",
"window.newWindowDimensions": "inherit",
"window.openFilesInNewWindow": "off",
"window.openFoldersInNewWindow": "off",
"window.restoreWindows": "none",
"window.titleBarStyle": "custom",
"workbench.colorTheme": "Dark Modern",
"workbench.secondarySideBar.defaultVisibility": "hidden",
"workbench.startupEditor": "none",
// Terminal
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.cwd": "${workspaceFolder}",
"terminal.integrated.rightClickBehavior": "paste",
// Debug
"debug.showInStatusBar": "never",
"debug.toolBarLocation": "commandCenter",
"debug.internalConsoleOptions": "openOnSessionStart",
"debug.console.collapseIdenticalLines": false,
// Git
"git.autofetch": false,
"git.autoRepositoryDetection": false,
"git.blame.editorDecoration.enabled": false,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.openRepositoryInParentFolders": "never",
"git.postCommitCommand": "push",
"git.showPushSuccessNotification": true,
// Web
"html.format.extraLiners": "",
"html.format.indentInnerHtml": false,
"js/ts.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"js/ts.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
// Extension: C/C++ (ms-vscode.cpptools)
"C_Cpp.copilotHover": "disabled",
"C_Cpp.intelliSenseEngine": "disabled",
// Extension: clangd (llvm-vs-code-extensions.vscode-clangd)
"clangd.path": "D:\\Ace\\bin\\clangd.exe",
"clangd.arguments": [
"--header-insertion=never"
],
// Extension: CMake Tools (ms-vscode.cmake-tools)
"cmake.copyCompileCommands": "${workspaceFolder}/build/compile_commands.json",
"cmake.enableAutomaticKitScan": false,
"cmake.ignoreCMakeListsMissing": true,
"cmake.showConfigureWithDebuggerNotification": false,
"cmake.launchBehavior": "breakAndReuseTerminal",
"cmake.useCMakePresets": "always",
"cmake.pinnedCommands": [
"workbench.action.tasks.configureTaskRunner",
"workbench.action.tasks.runTask",
"workbench.action.tasks.debug"
],
"cmake.options.statusBarVisibility": "hidden",
"cmake.options.advanced": {
"configurePreset": {
"statusBarVisibility": "compact"
},
"buildPreset": {
"statusBarVisibility": "compact"
},
"buildTarget": {
"statusBarVisibility": "compact"
},
"launchTarget": {
"statusBarVisibility": "compact"
},
"build": {
"statusBarVisibility": "icon"
},
"debug": {
"statusBarVisibility": "icon"
},
"launch": {
"statusBarVisibility": "icon"
},
},
// Extension: LLDB DAP (llvm-vs-code-extensions.lldb-dap)
"lldb-dap.executable-path": "D:\\Ace\\bin\\lldb-dap.exe",
"cmake.debugConfig": {
"name": "LLDB",
"type": "lldb-dap",
"request": "launch",
"console": "internalConsole",
"program": "${command:cmake.launchTargetPath}",
"cwd": "${workspaceRoot}",
"args": [],
"env": []
},
// Extension: Reflow Markdown
"reflowMarkdown.preferredLineLength": 100,
// Format
"[c][cpp]": {
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd",
"editor.formatOnSave": false
},
"[markdown][markdown-math]": {
"editor.tabSize": 2,
"editor.indentSize": 2
},
"gitlab.duoCodeSuggestions.enabled": false,
"gitlab.duoChat.enabled": false,
"gitlab.duoAgentPlatform.enabled": false,
"gitlab.duo.enabledWithoutGitlabProject": false,
"gitlab.keybindingHints.enabled": false,
"gitlab.duoCodeSuggestions.openTabsContext": false,
"gitlab.real-timeSecurityScan.scanFileOnSave": false,
"gitlens.currentLine.enabled": false,
"gitlens.codeLens.enabled": false,
"gitlens.remotes": [
{
"domain": "gitlab.avsw.ru",
"type": "GitLab"
}
],
"powershell.promptToUpdatePowerShell": false,
"powershell.enableReferencesCodeLens": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment