return { "stevearc/oil.nvim", opts = { keymaps = { ["g?"] = "actions.show_help", [""] = "actions.select", [""] = { "actions.select", opts = { vertical = true }, desc = "Open the entry in a vertical split" }, [""] = { "actions.select", opts = { horizontal = true }, desc = "Open the entry in a horizontal split" }, [""] = { "actions.select", opts = { tab = true }, desc = "Open the entry in new tab" }, [""] = "actions.preview", [""] = "actions.close", [""] = "actions.refresh", ["-"] = "actions.parent", ["_"] = "actions.open_cwd", ["`"] = "actions.cd", ["~"] = { "actions.cd", opts = { scope = "tab" }, desc = ":tcd to the current oil directory" }, ["gs"] = "actions.change_sort", ["gx"] = "actions.open_external", ["g."] = "actions.toggle_hidden", ["g\\"] = "actions.toggle_trash", }, use_default_keymaps = false, }, -- Optional dependencies dependencies = { "nvim-tree/nvim-web-devicons" }, }