From 79a572e0331ee2380dcb9bbcf0bb3ea1f9f2044a Mon Sep 17 00:00:00 2001 From: Ruslan Date: Mon, 13 Oct 2025 17:42:38 +0300 Subject: [PATCH] oil: formatting --- lua/crentist/lazy/oil.lua | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) 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, + } + }, }