diff options
Diffstat (limited to 'nvim/after/plugin/mini.lua')
| -rw-r--r-- | nvim/after/plugin/mini.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/nvim/after/plugin/mini.lua b/nvim/after/plugin/mini.lua new file mode 100644 index 0000000..92e42b4 --- /dev/null +++ b/nvim/after/plugin/mini.lua @@ -0,0 +1,11 @@ +require('mini.files').setup({ + mappings = { + close = '<C-c>', + go_in = '<Right>', + go_in_plus = '<S-Right>', + go_out = '<Left>', + go_out_plus = '<S-Left>', + }, +}) + +require('mini.trailspace').setup() |