From c218e789454cad38e42003ec0ebaf874bdd94648 Mon Sep 17 00:00:00 2001 From: quirinecker Date: Sat, 6 Dec 2025 21:17:47 +0100 Subject: [PATCH] fixed #6 --- homemanager/neovim/lua/plugins/spec/oil.lua | 30 ++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/homemanager/neovim/lua/plugins/spec/oil.lua b/homemanager/neovim/lua/plugins/spec/oil.lua index a61230c..5f602c5 100644 --- a/homemanager/neovim/lua/plugins/spec/oil.lua +++ b/homemanager/neovim/lua/plugins/spec/oil.lua @@ -1,20 +1,20 @@ local function oil() - require("oil").open() + require("oil").open() end return { - 'stevearc/oil.nvim', - opts = { - view_options = { - show_hidden = true - } - }, - lazy = false, - cmd = 'Oil', - keys = { - {"ft", oil, ""} - }, - dependencies = { - 'kyazdani42/nvim-web-devicons', - } + 'stevearc/oil.nvim', + opts = { + view_options = { + show_hidden = true + } + }, + lazy = false, + cmd = 'Oil', + keys = { + { "-", oil, "" } + }, + dependencies = { + 'kyazdani42/nvim-web-devicons', + } }