about summary refs log tree commit diff stats
path: root/modules/by-name/nv/nvim/plgs/which-key
diff options
context:
space:
mode:
Diffstat (limited to 'modules/by-name/nv/nvim/plgs/which-key')
-rw-r--r--modules/by-name/nv/nvim/plgs/which-key/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/by-name/nv/nvim/plgs/which-key/default.nix b/modules/by-name/nv/nvim/plgs/which-key/default.nix
new file mode 100644
index 00000000..20004bb1
--- /dev/null
+++ b/modules/by-name/nv/nvim/plgs/which-key/default.nix
@@ -0,0 +1,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;
+  };
+}