nix-community.nixvim/tests/test-sources/plugins/by-name/helpview/default.nix
2024-09-15 18:02:08 -05:00

25 lines
394 B
Nix

{
empty = {
plugins.helpview.enable = true;
};
defaults = {
plugins.helpview = {
enable = true;
settings = {
buf_ignore = null;
mode = [
"n"
"c"
];
hybrid_modes = null;
callback = {
on_enable = null;
on_disable = null;
on_mode_change = null;
};
};
};
};
}