From bcf63bbda52234d1fd76dabc61de8dd30dbb5534 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Sun, 11 Feb 2024 01:07:07 +0100 Subject: [PATCH] vim: fix formatting in options.lua --- config/nvim/lua/fschauen/options.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/nvim/lua/fschauen/options.lua b/config/nvim/lua/fschauen/options.lua index 1f41f18..7078902 100644 --- a/config/nvim/lua/fschauen/options.lua +++ b/config/nvim/lua/fschauen/options.lua @@ -131,10 +131,10 @@ M.setup = function() -- Options for diff mode o.diffopt = { -- better side-by-side diffs - 'filler', -- show filler lines (so text is vertically synced) - 'vertical', -- use vertical splits (files side-by-side) - 'closeoff', -- disable diff mode when one window is closed -} + 'filler', -- show filler lines (so text is vertically synced) + 'vertical', -- use vertical splits (files side-by-side) + 'closeoff', -- disable diff mode when one window is closed + } end return M