Files
dots/home/editors/nvim/plugins/utils/which-key/default.nix
2025-12-01 18:24:34 +01:00

18 lines
344 B
Nix

{pkgs, ...}: {
extraPackages = with pkgs; [lazygit];
plugins.which-key = {
enable = true;
settings = {
preset = "helix"; # "classic" | "modern" | "helix"
sort = ["manual"];
win = {
border = "rounded";
};
icon.mappings = false;
};
};
extraConfigLua = builtins.readFile ./config.lua;
}