mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 09:18:38 +02:00
26 lines
394 B
Nix
26 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|