initial commit
This commit is contained in:
14
homemanager/neovim/projects/docki-cli.lua
Normal file
14
homemanager/neovim/projects/docki-cli.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
local dap = require("dap")
|
||||
|
||||
dap.configurations.rust = {
|
||||
{
|
||||
name = 'somethign',
|
||||
type = 'lldb',
|
||||
request = 'launch',
|
||||
program = function()
|
||||
return vim.fn.getcwd() .. '/target/debug/docki'
|
||||
end,
|
||||
cwd = "${workspaceFolder}",
|
||||
stopOnEntry = false
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user