30 lines
440 B
Lua
30 lines
440 B
Lua
return {
|
|
'echasnovski/mini.files',
|
|
commit = '0db8f49088bcefff23c5cb8498a6c94e46a45a8e',
|
|
lazy = true,
|
|
|
|
keys = {
|
|
{
|
|
'<leader>fd',
|
|
function()
|
|
if not require('mini.files').close() then
|
|
require('mini.files').open()
|
|
end
|
|
end,
|
|
'n',
|
|
desc = '[F]ile Browser'
|
|
},
|
|
},
|
|
|
|
opts = {
|
|
mapping = {
|
|
close = { 'q', '<leader>fd' },
|
|
go_in_plus = '',
|
|
go_out_plus = '',
|
|
},
|
|
windows = {
|
|
preview = false,
|
|
},
|
|
},
|
|
}
|