From d91c167d6e76bfef38575cfcef0780c4093c6709 Mon Sep 17 00:00:00 2001 From: Ruslan Date: Thu, 25 Jul 2024 13:03:33 +0300 Subject: [PATCH] oil: enable show_hidden by default --- lua/crentist/lazy/oil.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/crentist/lazy/oil.lua b/lua/crentist/lazy/oil.lua index b072b3e..e34f45d 100644 --- a/lua/crentist/lazy/oil.lua +++ b/lua/crentist/lazy/oil.lua @@ -5,9 +5,13 @@ return { opts = {}, config = function() require('oil').setup({ + view_options = { + show_hidden = true, + }, keymaps = { [''] = false, } }) end } +