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:
parent
89ea7e9cf2
commit
1d70d0c649
1 changed files with 2 additions and 1 deletions
|
@ -44,9 +44,10 @@ starter.setup({
|
||||||
evaluate_single = true,
|
evaluate_single = true,
|
||||||
items = {
|
items = {
|
||||||
starter.sections.builtin_actions(),
|
starter.sections.builtin_actions(),
|
||||||
starter.sections.recent_files(10, false),
|
|
||||||
starter.sections.recent_files(10, true),
|
starter.sections.recent_files(10, true),
|
||||||
|
starter.sections.recent_files(10, false),
|
||||||
-- Use this if you set up 'mini.sessions'
|
-- Use this if you set up 'mini.sessions'
|
||||||
|
-- starter.sections.sessions(),
|
||||||
starter.sections.telescope(),
|
starter.sections.telescope(),
|
||||||
},
|
},
|
||||||
content_hooks = {
|
content_hooks = {
|
||||||
|
|
Loading…
Reference in a new issue