diff options
Diffstat (limited to '')
| -rw-r--r-- | nvim/lua/plugins/oil.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/nvim/lua/plugins/oil.lua b/nvim/lua/plugins/oil.lua index be3f35e..e717988 100644 --- a/nvim/lua/plugins/oil.lua +++ b/nvim/lua/plugins/oil.lua @@ -12,17 +12,17 @@ local config = function() delete_to_trash = true, skip_confirm_for_simple_edits = true, keymaps = { - ["o?"] = "actions.show_help", + ["b?"] = "actions.show_help", ["<CR>"] = "actions.select", - ["op"] = "actions.preview", + ["bp"] = "actions.preview", ["q"] = "actions.close", - ["or"] = "actions.refresh", + ["br"] = "actions.refresh", ["-"] = "actions.parent", ["_"] = "actions.open_cwd", ["~"] = "actions.cd", - ["os"] = "actions.change_sort", - ["o."] = "actions.toggle_hidden", - ["ot"] = "actions.toggle_trash", + ["bs"] = "actions.change_sort", + ["b."] = "actions.toggle_hidden", + ["bt"] = "actions.toggle_trash", }, use_default_keymaps = false, }) |
