1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

plugins/dashboard: add option

`plugins.dashboard.settings.config.mru.enable`.
This commit is contained in:
Fovir 2025-07-23 00:16:37 +08:00 committed by Matt Sturgeon
parent 9d076b033d
commit 832de87d40

View file

@ -397,6 +397,10 @@ lib.nixvim.plugins.mkNeovimPlugin {
${requiresTheme "hyper"}
''
{
enable = helpers.defaultNullOpts.mkBool true ''
Whether to display the recent file list.
'';
limit = helpers.defaultNullOpts.mkInt 10 ''
The maximum number of files to list.
'';