Files
my-nvim/lua/crentist/lazy/oil.lua
2024-12-18 11:36:49 +02:00

21 lines
467 B
Lua

return {
'stevearc/oil.nvim',
-- Optional dependencies
dependencies = { 'nvim-tree/nvim-web-devicons' },
opts = {},
config = function()
require('oil').setup({
view_options = {
show_hidden = true,
},
keymaps = {
['<C-h>'] = false,
['<C-j>'] = false,
['<C-k>'] = false,
['<C-l>'] = false,
}
})
end
}