mirror of
https://github.com/cap153/nvim.git
synced 2025-12-26 19:25:01 +08:00
23 lines
424 B
Lua
23 lines
424 B
Lua
return {
|
|
'echasnovski/mini.files',
|
|
config = function()
|
|
require('mini.files').setup{
|
|
mappings = {
|
|
close = 'q',
|
|
go_in = 'I',
|
|
go_in_plus = 'i',
|
|
go_out = 'N',
|
|
go_out_plus = 'n',
|
|
mark_goto = "'",
|
|
mark_set = 'm',
|
|
reset = '<BS>',
|
|
reveal_cwd = '@',
|
|
show_help = 'g?',
|
|
synchronize = '=',
|
|
trim_left = '<',
|
|
trim_right = '>',
|
|
}
|
|
}
|
|
end
|
|
}
|
|
|