This commit is contained in:
Jonathan DeMasi
2025-09-12 21:31:15 -06:00
parent 09b356a24c
commit f5698e229e
3 changed files with 20 additions and 2 deletions

16
lua/plugins/oil.lua Normal file
View File

@@ -0,0 +1,16 @@
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,
},
}