mirror of
https://github.com/cap153/nvim.git
synced 2025-12-31 06:45:07 +08:00
first commit
This commit is contained in:
commit
6955e90e07
61 changed files with 3641 additions and 0 deletions
21
lua/lazy/plugins/minifiles.lua
Normal file
21
lua/lazy/plugins/minifiles.lua
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
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',
|
||||
reset = '<BS>',
|
||||
reveal_cwd = '@',
|
||||
show_help = 'g?',
|
||||
synchronize = '=',
|
||||
trim_left = '<',
|
||||
trim_right = '>',
|
||||
}
|
||||
}
|
||||
end
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue