-- ============================================================================= -- oil.lua — 文件浏览器 -- ============================================================================= return { { "stevearc/oil.nvim", dependencies = { "nvim-tree/nvim-web-devicons", }, opts = { default_file_explorer = true, keymaps = { [""] = "actions.select", [""] = "actions.preview", [""] = "actions.close", [""] = "actions.refresh", [""] = "actions.toggle_hidden", ["g?"] = "actions.show_help", }, view_options = { show_hidden = true, }, float = { padding = 2, max_width = 90, border = "rounded", }, }, keys = { { "-", "Oil", desc = "打开父目录" }, { "fe", "Oil", desc = "文件浏览器" }, }, }, }