Files
nvim/lua/plugins/oil.lua
Jonathan DeMasi f5698e229e init oil
2025-09-12 21:31:15 -06:00

17 lines
458 B
Lua

return {
{
'stevearc/oil.nvim',
---@module 'oil'
---@type oil.SetupOpts
opts = {},
-- Optional dependencies
dependencies = { { "echasnovski/mini.icons", opts = {} } },
-- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if you prefer nvim-web-devicons
-- Lazy loading is not recommended because it is very tricky to make it work correctly in all situations.
lazy = false,
config = function()
require("oil").setup()
end,
},
}