This commit is contained in:
Dobromir Popov
2025-09-08 09:12:55 +03:00
parent 85542e34fe
commit b5bec14311
9 changed files with 1547 additions and 55 deletions

View File

@@ -10,7 +10,7 @@
"configure": "shellscript"
},
"terminal.integrated.shell.linux": "/bin/bash",
"terminal.integrated.shellArgs.linux": [],
"terminal.integrated.shellArgs.linux": ["-l"],
"cmake.configureOnOpen": false,
"C_Cpp.default.compilerPath": "/usr/bin/gcc",
"C_Cpp.default.cStandard": "c11",
@@ -23,7 +23,7 @@
"C_Cpp.default.defines": [
"HAVE_CONFIG_H"
],
"docker.host": "tcp://localhost:2375",
"docker.host": "unix:///var/run/docker.sock",
"docker.certificates": [],
"docker.tlsVerify": false,
"docker.machineName": "",
@@ -60,5 +60,16 @@
"task.saveBeforeRun": "prompt",
"remote.SSH.configFile": "~/.ssh/config",
"remote.SSH.showLoginTerminal": true,
"remote.SSH.useLocalServer": 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
}