14 lines
281 B
Lua
14 lines
281 B
Lua
return {
|
|
'stevearc/oil.nvim',
|
|
-- Optional dependencies
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
opts = {},
|
|
config = function()
|
|
require('oil').setup({
|
|
keymaps = {
|
|
['<C-h>'] = false,
|
|
}
|
|
})
|
|
end
|
|
}
|