include telescope file browser as a dependency
This commit is contained in:
parent
e1eb3f70d1
commit
9649f0d659
|
|
@ -25,6 +25,7 @@
|
||||||
"oil.nvim": { "branch": "master", "commit": "bf753c3e3f8736939ad5597f92329dfe7b1df4f5" },
|
"oil.nvim": { "branch": "master", "commit": "bf753c3e3f8736939ad5597f92329dfe7b1df4f5" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "4f71c0c4a196ceb656c824a70792f3df3ce6bb6d" },
|
"plenary.nvim": { "branch": "master", "commit": "4f71c0c4a196ceb656c824a70792f3df3ce6bb6d" },
|
||||||
"rust.vim": { "branch": "master", "commit": "889b9a7515db477f4cb6808bef1769e53493c578" },
|
"rust.vim": { "branch": "master", "commit": "889b9a7515db477f4cb6808bef1769e53493c578" },
|
||||||
|
"telescope-file-browser.nvim": { "branch": "master", "commit": "1280db1f835bd6b73a485d6f1149e02df67533c4" },
|
||||||
"telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" },
|
"telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" },
|
||||||
"telescope.nvim": { "branch": "0.1.x", "commit": "d90956833d7c27e73c621a61f20b29fdb7122709" },
|
"telescope.nvim": { "branch": "0.1.x", "commit": "d90956833d7c27e73c621a61f20b29fdb7122709" },
|
||||||
"todo-comments.nvim": { "branch": "main", "commit": "833d8dd8b07eeda37a09e99460f72a02616935cb" },
|
"todo-comments.nvim": { "branch": "main", "commit": "833d8dd8b07eeda37a09e99460f72a02616935cb" },
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,13 @@
|
||||||
-- TODO: Look into mini starter sessions?
|
|
||||||
-- startup screen
|
-- startup screen
|
||||||
return {
|
return {
|
||||||
'echasnovski/mini.nvim',
|
'echasnovski/mini.nvim',
|
||||||
|
dependencies = {
|
||||||
|
'nvim-telescope/telescope-file-browser.nvim',
|
||||||
|
},
|
||||||
config = function()
|
config = function()
|
||||||
local mini = require('mini.starter');
|
local mini = require('mini.starter');
|
||||||
mini.setup({
|
mini.setup({
|
||||||
items = {
|
items = {
|
||||||
-- FIX: either install telescope browser extension, or remove browser from telescope options
|
|
||||||
mini.sections.telescope(),
|
mini.sections.telescope(),
|
||||||
mini.sections.recent_files(5, true, true),
|
mini.sections.recent_files(5, true, true),
|
||||||
mini.sections.builtin_actions(),
|
mini.sections.builtin_actions(),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue