feat: lapce run toml

This commit is contained in:
Nova
2024-03-09 23:51:07 -05:00
parent 15f771ff93
commit 7318d5317c

29
.lapce/run.toml Normal file
View File

@@ -0,0 +1,29 @@
# The run config is used for both run mode and debug mode
[[configs]]
# the name of this task
name = "task"
# the type of the debugger. If not set, it can't be debugged but can still be run
type = "lldb"
# the program to run
program = "cargo"
# the program arguments, e.g. args = ["arg1", "arg2"], optional
args = ["lrun", "--", "-f"]
# current working directory, optional
# cwd = "${workspace}"
# enviroment variables, optional
# [configs.env]
# VAR1 = "VAL1"
# VAR2 = "VAL2"
# task to run before the run/debug session is started, optional
# [configs.prelaunch]
# program = "cargo"
# args = [
# "build",
# ]