Files
mines/rin/miner/.vscode/settings.json
Dobromir Popov b5bec14311 git cred
2025-09-08 09:12:55 +03:00

76 lines
2.6 KiB
JSON

{
"files.associations": {
"*.c": "c",
"*.h": "c",
"*.sh": "shellscript",
"*.bat": "batch",
"*.md": "markdown",
"Makefile": "makefile",
"configure.ac": "autoconf",
"configure": "shellscript"
},
"terminal.integrated.shell.linux": "/bin/bash",
"terminal.integrated.shellArgs.linux": ["-l"],
"cmake.configureOnOpen": false,
"C_Cpp.default.compilerPath": "/usr/bin/gcc",
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.cppStandard": "c++11",
"C_Cpp.default.includePath": [
"${workspaceFolder}/cpuminer-opt-rin",
"${workspaceFolder}/cpuminer-opt-rin/algo",
"${workspaceFolder}/cpuminer-opt-rin/algo/rinhash"
],
"C_Cpp.default.defines": [
"HAVE_CONFIG_H"
],
"docker.host": "unix:///var/run/docker.sock",
"docker.certificates": [],
"docker.tlsVerify": false,
"docker.machineName": "",
"docker.context": "default",
"docker.showExplorer": true,
"docker.containers.groupBy": "Image",
"docker.containers.showRunningOnly": false,
"docker.images.groupBy": "Repository",
"docker.images.showDanglingImages": false,
"docker.volumes.groupBy": "none",
"docker.networks.groupBy": "none",
"docker.contexts.groupBy": "none",
"docker.commands.build": "docker build --pull --rm -f \"${file}\" -t ${tag} \"${context}\"",
"docker.commands.run": "docker run --rm -d ${exposedPorts} ${tag}",
"docker.commands.runInteractive": "docker run --rm -it ${exposedPorts} ${tag}",
"search.exclude": {
"**/build/**": true,
"**/complete-build-output/**": true,
"**/hip-output/**": true,
"**/rocm-direct-output/**": true,
"**/*.o": true,
"**/*.exe": true,
"**/node_modules/**": true,
"**/.git/**": true
},
"files.exclude": {
"**/build/**": false,
"**/complete-build-output/**": false,
"**/hip-output/**": false,
"**/rocm-direct-output/**": false
},
"task.quickOpen.detail": true,
"task.quickOpen.showAll": true,
"task.saveBeforeRun": "prompt",
"remote.SSH.configFile": "~/.ssh/config",
"remote.SSH.showLoginTerminal": true,
"remote.SSH.useLocalServer": true,
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.enableCommitSigning": false,
"git.useEditorAsCommitInput": false,
"git.untrackedChanges": "separate",
"git.openDiffOnClick": true,
"git.defaultCloneDirectory": "~/Projects",
"git.ignoreLegacyWarning": true,
"git.showInlineOpenFileAction": true,
"git.showPushSuccessNotification": true
}