diff --git a/lua/crentist/lazy/oil.lua b/lua/crentist/lazy/oil.lua index f1c5220..8e49a8f 100644 --- a/lua/crentist/lazy/oil.lua +++ b/lua/crentist/lazy/oil.lua @@ -1,20 +1,16 @@ return { 'stevearc/oil.nvim', - -- Optional dependencies dependencies = { 'nvim-tree/nvim-web-devicons' }, - opts = {}, - config = function() - require('oil').setup({ - view_options = { - show_hidden = true, - }, - keymaps = { - [''] = false, - [''] = false, - [''] = false, - [''] = false, - } - }) - end + opts = { + view_options = { + show_hidden = true, + }, + keymaps = { + [''] = false, + [''] = false, + [''] = false, + [''] = false, + } + }, }