require("oil").setup { -- This bug would prevent downloading language files from working -- https://github.com/stevearc/oil.nvim/issues/483 default_file_explorer = false, columns = { -- "icon", -- "permissions", -- "size", -- "mtime", }, skip_confirm_for_simple_edits = true, prompt_save_on_select_new_entry = false, keymaps = { ["g?"] = "actions.show_help", [""] = "actions.select", -- [""] = "actions.select_vsplit", [""] = "actions.select_split", [""] = "actions.select_tab", [""] = "actions.preview", [""] = "actions.close", [""] = "actions.refresh", ["-"] = "actions.parent", ["_"] = "actions.open_cwd", ["`"] = "actions.cd", ["~"] = "actions.tcd", ["gs"] = "actions.change_sort", ["gx"] = "actions.open_external", ["g."] = "actions.toggle_hidden", ["g\\"] = "actions.toggle_trash", [":"] = "actions.open_cmdline", }, view_options = { show_hidden = true, }, }