start a new nvim config from scratch

This commit is contained in:
2025-11-14 22:49:45 -05:00
parent 158937509c
commit 2c2804273c
11 changed files with 219 additions and 0 deletions

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

@@ -0,0 +1,11 @@
return {
'stevearc/oil.nvim',
---@module 'oil'
---@type oil.SetupOpts
opts = {},
-- Optional dependencies
dependencies = { { "nvim-mini/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,
}