I am trying to get a listing of my journal entries in descending order. I create a file for each day named with the date as follows:
2020-12-31.md
2021-01-01.md
…
2021-04-01.md
2021-04-02.md
2021-04-03.md
I am using the Telescopes builtin find_files as follows:
require('telescope.builtin').find_files({
cwd = journal_dir;
})
This however lists the oldest files first. I want it to be in the opposite order. I have tried setting sorting_strategy
to ascending
. but that just moves the first selection to be at the top.