25 lines
489 B
Lua
25 lines
489 B
Lua
-- File system operations for nerds
|
|
-- https://github.com/stevearc/oil.nvim
|
|
return {
|
|
"stevearc/oil.nvim",
|
|
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
|
|
["<leader>e"] = "actions.close",
|
|
},
|
|
})
|
|
end,
|
|
}
|