Merge branch 'master' of https://git.freiewildbahn.de/oli/nvim
This commit is contained in:
commit
4bbf17633d
@ -97,7 +97,13 @@ dap.adapters.codelldb = {
|
||||
|
||||
dap.adapters.lldb = {
|
||||
type = 'executable',
|
||||
command = os.getenv('SCOOP') .. '/apps/llvm/current/bin/lldb-vscode.exe',
|
||||
command = function()
|
||||
if vim.loop.os_uname().sysname == 'Linux' then
|
||||
return 'lldb-vscode'
|
||||
else
|
||||
return os.getenv('SCOOP') .. '/apps/llvm/current/bin/lldb-vscode.exe'
|
||||
end
|
||||
end,
|
||||
name = 'lldb'
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user