about summary refs log tree commit diff stats
path: root/modules/by-name/nv/nvim/plgs/which-key/default.nix
blob: 20004bb1a26cabbab226eb0eef02236888db47b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{
  config,
  lib,
  ...
}: let
  cfg = config.soispha.programs.nvim;
in {
  home-manager.users.soispha.programs.nixvim.plugins.which-key = lib.mkIf cfg.enable {
    enable = true;
  };
}