mirror of
https://github.com/Tilo-K/neovim-config.git
synced 2026-07-03 21:53:01 +00:00
19 lines
446 B
Lua
19 lines
446 B
Lua
return {
|
|
{
|
|
'stevearc/oil.nvim',
|
|
---@module 'oil'
|
|
---@type oil.SetupOpts
|
|
opts = {
|
|
view_options = {
|
|
show_hidden = true,
|
|
is_always_hidden = function(name, _)
|
|
return name == '..'
|
|
end,
|
|
},
|
|
},
|
|
-- Optional dependencies
|
|
-- dependencies = { { "echasnovski/mini.icons", opts = {} } },
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' }, -- use if prefer nvim-web-devicons
|
|
},
|
|
}
|