pkg(nixvim): Add which-key plugin

This commit is contained in:
ulic-youthlic 2025-07-13 06:04:55 +08:00
parent f764a607c0
commit 9238672dad
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
2 changed files with 18 additions and 4 deletions

View file

@ -1,14 +1,11 @@
{...}: {
plugins = {
youthlic.plugins = {
# grug-far = {
# enable = true;
# };
# flash = {
# enable = true;
# };
# which-key = {
# enable = true;
# };
# gitsigns = {
# enable = true;
# };

View file

@ -0,0 +1,17 @@
{...}: {
youthlic.plugins = {
which-key = {
enable = true;
settings = {
preset = "helix";
win = {
no_overlap = false;
};
show_help = false;
};
};
web-devicons = {
enable = true;
};
};
}