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

19 lines
274 B
Nix
Raw Normal View History

2025-07-13 06:04:55 +08:00
{ ... }:
{
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;
};
};
}