Files
dotfiles/AppData/Roaming/Code/User/settings.json
T
2026-02-13 11:58:57 +00:00

311 lines
11 KiB
JSON

{
"git.openRepositoryInParentFolders": "always",
"boot-java.rewrite.reconcile": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"fzf-quick-open.findDirectoriesCmd": "fd --type d",
"workbench.startupEditor": "none",
"editor.minimap.enabled": false,
"editor.fontFamily": "CaskaydiaCove Nerd Font",
"terminal.integrated.fontFamily": "'CaskaydiaCove Nerd Font', monospace",
"editor.fontLigatures": true,
"terminal.integrated.fontSize": 14,
"security.workspace.trust.untrustedFiles": "open",
"[python]": {
"editor.formatOnType": true
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"cmake.configureOnOpen": false,
"redhat.telemetry.enabled": true,
"lldb.suppressUpdateNotifications": true,
"C_Cpp.autocompleteAddParentheses": true,
"livePreview.notifyOnOpenLooseFile": false,
"workbench.iconTheme": "vscode-icons",
"terminal.integrated.sendKeybindingsToShell": true,
"gitlens.advanced.messages": {
"suppressImproperWorkspaceCasingWarning": true,
"suppressLineUncommittedWarning": true
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"remote.SSH.remotePlatform": {
"leisure-jenkins": "linux",
"lbologs": "linux",
"centos10": "linux",
"centos9": "linux"
},
"editor.codeLensFontFamily": "'CaskaydiaCove Nerd Font', Consolas, 'Courier New', monospace",
"chat.editor.fontSize": 12,
"vsicons.dontShowNewVersionMessage": true,
"workbench.editor.empty.hint": "hidden",
"security.workspace.trust.emptyWindow": false,
"security.workspace.trust.enabled": false,
"sonarlint.connectedMode.connections.sonarqube": [
{
"serverUrl": "https://sonarqube-prod.ingg.com",
"connectionId": "SonarQube Prod"
},
{
"serverUrl": "https://sonarqube-qa.ingg.com",
"connectionId": "https://sonarqube-qa.ingg.com"
}
],
"[cpp]": {
"editor.wordBasedSuggestions": "off",
"editor.suggest.insertMode": "replace",
"editor.semanticHighlighting.enabled": true
},
"xml.colors": [],
"xml.fileAssociations": [
{
"systemId": "https://raw.githubusercontent.com/PowerShell/PowerShell/master/src/Schemas/Format.xsd",
"pattern": "**/*.Format.ps1xml"
},
{
"systemId": "https://raw.githubusercontent.com/PowerShell/PowerShell/master/src/Schemas/Types.xsd",
"pattern": "**/*.Types.ps1xml"
}
],
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"cmake.showOptionsMovedNotification": false,
"markdown.preview.fontSize": 12,
"scm.inputFontSize": 12,
"debug.console.fontSize": 12,
"security.allowedUNCHosts": [
"wsl.localhost",
"wsl$",
"nas"
],
"terminal.integrated.allowChords": false,
"terminal.integrated.profiles.windows": {
"PowerShell": {
"path": "pwsh.exe",
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Ubuntu (WSL)": {
"path": "C:\\WINDOWS\\System32\\wsl.exe",
"args": [
"-d",
"Ubuntu"
]
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
}
},
"terminal.integrated.splitCwd": "initial",
"extensions.experimental.affinity": {
"asvetliakov.vscode-neovim": 1
},
"vscode-neovim.neovimExecutablePaths.win32": "C:\\Users\\reazul.ashraf\\scoop\\shims\\nvim.exe",
"projectManager.git.maxDepthRecursion": 1,
"projectManager.groupList": true,
"projectManager.sortList": "Name",
"java.import.maven.offline.enabled": false,
"maven.downloadSources": true,
"java.eclipse.downloadSources": true,
"maven.downloadJavadocs": true,
"maven.terminal.useJavaHome": true,
"java.debug.settings.forceBuildBeforeLaunch": false,
"projectManager.git.baseFolders": [
"d:\\workspace",
"c:\\users\\reazul.ashraf\\workspace"
],
"files.exclude": {
"**/.idea": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/target/**": true,
"**/build/**": true,
"**/dist/**": true,
"**/.gradle/**": true,
"**/.idea/**": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/target": true,
"**/build": true,
"**/dist": true,
"**/.git": true,
"**/.idea": true
},
"files.hotExit": "onExitAndWindowClose",
"projectManager.svn.baseFolders": [
"d:\\svnrepo"
],
"cmake.pinnedCommands": [
"cmake.build",
"cmake.cleanRebuild",
"workbench.action.tasks.configureTaskRunner",
"workbench.action.tasks.runTask"
],
"cmake.showConfigureWithDebuggerNotification": false,
"C_Cpp_Runner.cCompilerPath": "clang",
"terminal.integrated.copyOnSelection": false,
"terminal.integrated.gpuAcceleration": "on",
"terminal.integrated.localEchoExcludePrograms": [
"vim",
"vi",
"nano",
"tmux",
"nvim"
],
"terminal.integrated.defaultProfile.windows": "PowerShell",
"debug.terminal.clearBeforeReusing": true,
"terminal.integrated.enableImages": true,
"code-runner.executorMap": {
"javascript": "node",
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"zig": "zig run",
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"php": "php",
"python": "python -u",
"perl": "perl",
"perl6": "perl6",
"ruby": "ruby",
"go": "go run",
"lua": "lua",
"groovy": "groovy",
"powershell": "powershell -ExecutionPolicy ByPass -File",
"bat": "cmd /c",
"shellscript": "bash",
"fsharp": "fsi",
"csharp": "scriptcs",
"vbscript": "cscript //Nologo",
"typescript": "ts-node",
"coffeescript": "coffee",
"scala": "scala",
"swift": "swift",
"julia": "julia",
"crystal": "crystal",
"ocaml": "ocaml",
"r": "Rscript",
"applescript": "osascript",
"clojure": "lein exec",
"haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",
"rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",
"racket": "racket",
"scheme": "csi -script",
"ahk": "autohotkey",
"autoit": "autoit3",
"dart": "dart",
"pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",
"d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",
"haskell": "runghc",
"nim": "nim compile --verbosity:0 --hints:off --run",
"lisp": "sbcl --script",
"kit": "kitc --run",
"v": "v run",
"sass": "sass --style expanded",
"scss": "sass --style expanded",
"less": "cd $dir && lessc $fileName $fileNameWithoutExt.css",
"FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"sml": "cd $dir && sml $fileName",
"mojo": "mojo run",
"erlang": "escript",
"spwn": "spwn build",
"pkl": "cd $dir && pkl eval -f yaml $fileName -o $fileNameWithoutExt.yaml",
"gleam": "gleam run -m $fileNameWithoutExt"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"plantuml.jar": "C:/Users/reazul.ashraf/scoop/apps/plantuml/current/plantuml.jar",
"plantuml.render": "Local",
"plantuml.server": "http://localhost:9081",
"markdown-preview-enhanced.previewTheme": "one-light.css",
"markdown-preview-enhanced.codeBlockTheme": "one-dark.css",
"markdown-preview-enhanced.enablePreviewZenMode": false,
"explorer.confirmDelete": false,
"sonarlint.focusOnNewCode": false,
"sonarlint.ls.vmargs": "-Xmx1024m",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.associations": {
"*.log": "log"
},
"window.menuBarVisibility": "compact",
"editor.fontVariations": true,
"terminal.integrated.mouseWheelZoom": true,
"editor.mouseWheelZoom": true,
"git.replaceTagsWhenPull": true,
"xml.server.vmargs": "-Xmx256M",
"xml.symbols.maxItemsComputed": 10000,
"geminicodeassist.enable": true,
"editor.wordWrapColumn": 160,
"prettier.printWidth": 160,
"[lua]": {
"editor.defaultFormatter": "sumneko.lua"
},
"print.folder.fileNames": true,
"print.folder.include": [],
"print.folder.exclude": [
"{bin,obj,out}",
"node_modules",
"data",
"**/*.{bin,exe,dll,hex,pdb,pdf,pfx,png,jpg,gif,bmp,suo,design}"
],
"print.folder.maxLines": 1200,
"print.folder.maxFiles": 30,
"print.folder.includeFileList": false,
"python.defaultInterpreterPath": "C:\\Python314\\python.exe",
"cloudcode.apigee.gemini.options": {
"enterpriseContext": {
"enabled": true,
"includeMetadata": true,
"includeSecurity": true,
"includeSchema": true
},
"enableRemoteMockServer": true
},
"geminicodeassist.project": "inse-r-and-d",
"chat.disableAIFeatures": true,
"sonarlint.automaticAnalysis": true,
"java.jdt.ls.java.home": "",
"terminal.integrated.initialHint": false,
"terminal.integrated.fontLigatures.enabled": true,
"docker.extension.dockerEngineAvailabilityPrompt": false,
"markdown.preview.typographer": true,
"powershell.integratedConsole.showOnStartup": false,
"[markdown]": {
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
}
},
"markdownlint.config": {},
"markdownlint.focusMode": false,
"markdownlint.configPath": "C:/Users/reazul.ashraf/.markdownlint.json",
"window.newWindowProfile": "Default"
}