summaryrefslogtreecommitdiff
path: root/nvim/after/plugin/mini.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/after/plugin/mini.lua')
-rw-r--r--nvim/after/plugin/mini.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/nvim/after/plugin/mini.lua b/nvim/after/plugin/mini.lua
deleted file mode 100644
index 76acdd6..0000000
--- a/nvim/after/plugin/mini.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-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()
-require('mini.move').setup({
- mappings = {
- left = '<M-Left>',
- right = '<M-Right>',
- down = '<M-Down>',
- up = '<M-Up>',
-
- line_left = '<M-Left>',
- line_right = '<M-Right>',
- line_down = '<M-Down>',
- line_up = '<M-Up>',
- },
-})