This commit is contained in:
Nathan Zeng 2026-06-11 18:01:37 +03:00 committed by GitHub
commit 5529e7fd32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -129,6 +129,9 @@ do
-- Enable undo/redo changes even after closing and reopening a file
vim.o.undofile = true
-- To open a visual and interactive undo tree, type :Undotree
-- See `:help :Undotree`
vim.schedule(function() vim.cmd.packadd 'nvim.undotree' end)
-- Case-insensitive searching UNLESS \C or one or more capital letters in the search term
vim.o.ignorecase = true