This commit is contained in:
2025-02-09 20:43:13 +02:00
parent c435dab9c9
commit c528a43b7a
3 changed files with 4 additions and 10 deletions

View File

@ -1,8 +1,5 @@
{ lib, config, ... }:
{ {
lib,
config,
...
}: {
options = { options = {
nvim-dap.enable = lib.mkEnableOption "Enable Debug Adapter Protocol module"; nvim-dap.enable = lib.mkEnableOption "Enable Debug Adapter Protocol module";
}; };

View File

@ -64,12 +64,12 @@
# }; # };
# } # }
{ {
mode = ["n" "i"]; mode = ["n"];
key = "<Up>"; key = "<Up>";
action = "g<Up>"; action = "g<Up>";
} }
{ {
mode = ["n" "i"]; mode = ["n"];
key = "<Down>"; key = "<Down>";
action = "g<Down>"; action = "g<Down>";
} }

View File

@ -1,8 +1,5 @@
{ lib, config, ... }:
{ {
lib,
config,
...
}: {
options = { options = {
notify.enable = lib.mkEnableOption "Enable notify module"; notify.enable = lib.mkEnableOption "Enable notify module";
}; };