1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-10 20:46:06 +01:00
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;
};
};
};
};
}