1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/tests/test-sources/plugins/by-name/cornelis/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

31 lines
529 B
Nix

{
empty = {
plugins.cornelis.enable = true;
};
defaults = {
plugins.cornelis = {
enable = true;
settings = {
use_global_binary = 0;
agda_prefix = "<localleader>";
no_agda_input = 0;
bind_input_hook.__raw = "nil";
};
};
};
example = {
plugins.cornelis = {
enable = true;
settings = {
use_global_binary = 1;
agda_prefix = "<Tab>";
no_agda_input = 1;
bind_input_hook = "MyCustomHook";
};
};
};
}