diff options
| author | Josh <joshott16@gmail.com> | 2025-07-22 13:17:40 -0400 |
|---|---|---|
| committer | Josh <joshott16@gmail.com> | 2025-07-22 13:17:40 -0400 |
| commit | 795287e3ec351def221f9b44d358a182062e203a (patch) | |
| tree | 865b52db0b2fb2392dafd0828440ea4492481b35 /nvim/after/plugin/mini.lua | |
| parent | 2feea510cb508d22345f3f6d3fc085613fccd6ac (diff) | |
| download | dotfiles-795287e3ec351def221f9b44d358a182062e203a.tar.gz dotfiles-795287e3ec351def221f9b44d358a182062e203a.zip | |
toggleterm config + misc stuff
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() |