Refactor: Removed duplicated opt; improve clarity with description

This commit is contained in:
MN-nagy 2025-07-16 16:36:46 +03:00
parent 87d4ff8a74
commit c2347a5ec6
1 changed files with 1 additions and 4 deletions

View File

@ -121,7 +121,7 @@ end)
-- Enable break indent -- Enable break indent
vim.o.breakindent = true vim.o.breakindent = true
-- Save undo history -- Enable undo/redo changes even after closing and reopening a file
vim.o.undofile = true vim.o.undofile = true
-- Case-insensitive searching UNLESS \C or one or more capital letters in the search term -- 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'` -- See `:help 'confirm'`
vim.o.confirm = true vim.o.confirm = true
-- Enable undo/redo changes even after closing and reopening a file
vim.o.undofile = true
-- Disable line wrapping -- Disable line wrapping
vim.o.wrap = false vim.o.wrap = false