From c2347a5ec6369346d187ddf1d3a5606e3f93593f Mon Sep 17 00:00:00 2001 From: MN-nagy Date: Wed, 16 Jul 2025 16:36:46 +0300 Subject: [PATCH] Refactor: Removed duplicated opt; improve clarity with description --- init.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/init.lua b/init.lua index 47d7f12a..42c1fca5 100644 --- a/init.lua +++ b/init.lua @@ -121,7 +121,7 @@ end) -- Enable break indent vim.o.breakindent = true --- Save undo history +-- Enable undo/redo changes even after closing and reopening a file vim.o.undofile = true -- Case-insensitive searching UNLESS \C or one or more capital letters in the search term @@ -166,9 +166,6 @@ vim.o.scrolloff = 10 -- See `:help 'confirm'` vim.o.confirm = true --- Enable undo/redo changes even after closing and reopening a file -vim.o.undofile = true - -- Disable line wrapping vim.o.wrap = false