diff options
| author | triethyl <triethylammonium@pm.me> | 2025-07-22 12:50:08 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-07-22 12:50:08 -0400 |
| commit | 6fae3be80b67abfda8e475542625169dd6e77f31 (patch) | |
| tree | abfeafd6a3e3922394f0827149a3fcebdf8d2c42 /pkgs/custom-neovim/config/lua/plugins/mini/files.lua | |
| parent | 50018aa0305bd2c5cf91431c128895fc0121d2fa (diff) | |
working on custom neovim
Diffstat (limited to 'pkgs/custom-neovim/config/lua/plugins/mini/files.lua')
| -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, + }, +} |
