Add indent_line and which_key plugins to nixvim

This commit is contained in:
2025-07-06 16:47:09 +02:00
parent 63af04cbf0
commit 1c0b832f72
+10
View File
@@ -86,6 +86,8 @@
}; };
}; };
plugins.indent-blankline.enable = true;
plugins.lualine = { plugins.lualine = {
enable = true; enable = true;
settings = { settings = {
@@ -98,6 +100,14 @@
}; };
}; };
plugins.which-key = {
enable = true;
lazyLoad = {
enable = true;
settings.event = "VimEnter";
};
};
extraPlugins = with pkgs.vimPlugins; [ extraPlugins = with pkgs.vimPlugins; [
vim-sleuth vim-sleuth
]; ];