nixos/pkgs/nixvim/editor/which-key.nix

18 lines
272 B
Nix
Raw Normal View History

2025-07-13 06:04:55 +08:00
{...}: {
youthlic.plugins = {
which-key = {
enable = true;
settings = {
preset = "helix";
win = {
no_overlap = false;
};
show_help = false;
};
};
web-devicons = {
enable = true;
};
};
}