mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
25 lines
429 B
Nix
25 lines
429 B
Nix
{
|
|
empty = {
|
|
plugins.helpview.enable = true;
|
|
};
|
|
|
|
defaults = {
|
|
plugins.helpview = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
buf_ignore.__raw = "nil";
|
|
mode = [
|
|
"n"
|
|
"c"
|
|
];
|
|
hybrid_modes.__raw = "nil";
|
|
callback = {
|
|
on_enable.__raw = "nil";
|
|
on_disable.__raw = "nil";
|
|
on_mode_change.__raw = "nil";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|