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 ];