From 1c0b832f72fd08d0aaa99bf07009624fb6e99d16 Mon Sep 17 00:00:00 2001 From: Leonhard Kost Date: Sun, 6 Jul 2025 16:47:09 +0200 Subject: [PATCH] Add indent_line and which_key plugins to nixvim --- modules/home-manager/nixvim.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/home-manager/nixvim.nix b/modules/home-manager/nixvim.nix index d3bea3e..9a745a4 100644 --- a/modules/home-manager/nixvim.nix +++ b/modules/home-manager/nixvim.nix @@ -86,6 +86,8 @@ }; }; + plugins.indent-blankline.enable = true; + plugins.lualine = { enable = true; settings = { @@ -98,6 +100,14 @@ }; }; + plugins.which-key = { + enable = true; + lazyLoad = { + enable = true; + settings.event = "VimEnter"; + }; + }; + extraPlugins = with pkgs.vimPlugins; [ vim-sleuth ];