Skip to content

Instantly share code, notes, and snippets.

@letientai299
Created August 9, 2022 21:13
Show Gist options
  • Save letientai299/ab97346846c7eac39386152f56952ba4 to your computer and use it in GitHub Desktop.
Save letientai299/ab97346846c7eac39386152f56952ba4 to your computer and use it in GitHub Desktop.
vimspector.json config for Rust using https://github.com/fannheyward/coc-rust-analyzer
{
"$schema": "https://puremourning.github.io/vimspector/schema/vimspector.schema.json",
"configurations": {
"launch": {
"adapter": "CodeLLDB",
"configuration": {
"type": "lldb",
"filetypes": ["rust"],
"request": "launch",
"program": "${Executable}",
"args": ["*${Args}"],
"cwd": "${workspaceRoot}",
"environment": [],
"stopAtEntry": false,
"MIMode": "lldb",
"logging": {
"engineLogging": false
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment