neovim/lua/weeheavy/plugins/oil.lua
Oliver Ladner 273008dd50 add oil.nvim
2024-01-22 22:23:59 +01:00

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,
}