oil: formatting

This commit is contained in:
2025-10-13 17:42:38 +03:00
parent 2178d4f312
commit 79a572e033

View File

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