diff options
Diffstat (limited to 'pkgs/custom-neovim/config/lua/plugins/mini')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/mini/files.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/custom-neovim/config/lua/plugins/mini/files.lua b/pkgs/custom-neovim/config/lua/plugins/mini/files.lua new file mode 100644 index 0000000..e64aefa --- /dev/null +++ b/pkgs/custom-neovim/config/lua/plugins/mini/files.lua @@ -0,0 +1,20 @@ +require("mini.files").setup { + mappings = { + close = '<esc>', + go_in = 'l', + go_in_plus = 'L', + go_out = 'h', + go_out_plus = 'H', + mark_goto = "'", + mark_set = 'm', + reset = '<BS>', + reveal_cwd = '@', + show_help = 'g?', + synchronize = '=', + trim_left = '<', + trim_right = '>', + }, + windows = { + preview = true, + }, +} |
