From f736721a1f87d7495a0d5104264723146d7bed4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Thu, 17 Oct 2024 13:03:45 +0200 Subject: [PATCH] feat(nvim): add helpview plugin --- modules/programs/nvim/new_plugins/other.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/programs/nvim/new_plugins/other.nix b/modules/programs/nvim/new_plugins/other.nix index 4d149e0..a65cd02 100644 --- a/modules/programs/nvim/new_plugins/other.nix +++ b/modules/programs/nvim/new_plugins/other.nix @@ -49,6 +49,10 @@ in { plugins.friendly-snippets.enable = true; } { plugins.direnv.enable = true; } { plugins.crates-nvim.enable = true; } + { + plugins.helpview.enable = true; + performance.combinePlugins.standalonePlugins = [ "helpview.nvim" ]; + } ]; }; }