diff --git a/lua/custom/plugins/oil.lua b/lua/custom/plugins/oil.lua index a8d9009..a6f697c 100644 --- a/lua/custom/plugins/oil.lua +++ b/lua/custom/plugins/oil.lua @@ -6,7 +6,12 @@ return { opts = {}, }, config = function() - require('oil').setup() + require('oil').setup { + use_default_keymaps = false, + view_options = { + show_hidden = true, + }, + } vim.keymap.set('n', 'pv', 'Oil', { desc = 'Open parent directory' }) end,