feat(plugins): add oil.nvim

- For a trial period
This commit is contained in:
2025-03-20 21:45:19 +01:00
parent b2881a4504
commit 0a044ca3d4
2 changed files with 24 additions and 12 deletions

View File

@ -337,5 +337,17 @@ require('lazy').setup({
'kaarmu/typst.vim',
ft = 'typst',
lazy = false,
},
-- oil.nvim
{
'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,
}
}, {})