diff --git a/.gitignore b/.gitignore index c4a74fa56..ed479cc26 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ .vscode/* !.vscode/extensions.json !.vscode/settings.json +!.vscode/launch.json .idea .DS_Store diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..b5d100f33 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "lldb", + "request": "launch", + "name": "GitButler Dev", + "program": "${workspaceFolder}/target/debug/GitButler Dev", + "args": [], + "cwd": "${workspaceFolder}" + } + ] +}