mirror of
https://github.com/fred-drake/neovim.git
synced 2026-06-06 07:19:27 -05:00
12 lines
233 B
Nix
12 lines
233 B
Nix
{pkgs, ...}: {
|
|
plugins.dap-virtual-text.enable = true;
|
|
plugins.dap-ui.enable = true;
|
|
plugins.dap = {
|
|
enable = true;
|
|
|
|
adapters = {
|
|
executables = {lldb = {command = "${pkgs.lldb_19}/bin/lldb-dap";};};
|
|
};
|
|
};
|
|
}
|