From 3836f866d66c23a352def081197ca27ec30ba4eb Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Fri, 15 Nov 2024 07:53:59 +0000 Subject: [PATCH] show hidden files in oil --- lua/plugins/oil.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/plugins/oil.lua b/lua/plugins/oil.lua index e411833..93bfffe 100644 --- a/lua/plugins/oil.lua +++ b/lua/plugins/oil.lua @@ -4,7 +4,10 @@ return { delete_to_trash = true, default_file_explorer = true, skip_confirm_for_simple_edits = true, - show_hidden = true, + view_options = { + -- Show files and directories that start with "." + show_hidden = true, + }, keymaps = { ['g?'] = 'actions.show_help', [''] = 'actions.select',