-- File system operations for nerds -- https://github.com/stevearc/oil.nvim return { "stevearc/oil.nvim", lazy = true, cmd = "Oil", dependencies = { "nvim-tree/nvim-web-devicons", }, config = function() local oil = require("oil") oil.setup({ default_file_explorer = true, columns = { --"size", "icon", }, view_options = { show_hidden = true, }, keymaps = { -- This should be matched to the open action in remap.lua ["e"] = "actions.close", }, }) end, }