Refactor: Removed duplicated opt; improve clarity with description
This commit is contained in:
parent
87d4ff8a74
commit
c2347a5ec6
5
init.lua
5
init.lua
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue