blob: ed2246d89ffc42de4699f6bf76c2851d385df4b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
local starter = require 'mini.starter'
local function telescope()
local builtinf = starter.sections.telescope()
local builtin = builtinf()
table.remove(builtin, 1)
return function() return builtin end
end
return {
items = {
telescope(),
starter.sections.builtin_actions(),
},
}
|