nvim: Switch starter screen recent files order

First show recent files of the current directory, then follow up with
general recent files.
This commit is contained in:
Marty Oehme 2024-02-10 14:14:17 +01:00
parent 89ea7e9cf2
commit 1d70d0c649
Signed by: Marty
GPG Key ID: EDBF2ED917B2EF6A
1 changed files with 2 additions and 1 deletions

View File

@ -44,9 +44,10 @@ starter.setup({
evaluate_single = true,
items = {
starter.sections.builtin_actions(),
starter.sections.recent_files(10, false),
starter.sections.recent_files(10, true),
starter.sections.recent_files(10, false),
-- Use this if you set up 'mini.sessions'
-- starter.sections.sessions(),
starter.sections.telescope(),
},
content_hooks = {