mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-29 05:31:05 +01:00
plugins/dap-view: require dap to be enabled
Add assertion requiring `plugins.dap` to be enabled when using `plugins.dap-view`.
This commit is contained in:
parent
266556b918
commit
7fe6951bf8
2 changed files with 11 additions and 1 deletions
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.dap.enable = true;
|
||||
plugins.dap-view.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.dap.enable = true;
|
||||
plugins.dap-view = {
|
||||
enable = true;
|
||||
|
||||
|
|
@ -154,6 +156,7 @@
|
|||
};
|
||||
|
||||
example = {
|
||||
plugins.dap.enable = true;
|
||||
plugins.dap-view = {
|
||||
enable = true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue