feat: built-in undotree plugin

This commit is contained in:
Nathan Zeng 2026-04-16 15:20:39 -07:00
parent cfdc17be3a
commit 6d0b5bd7dc
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 -- Enable undo/redo changes even after closing and reopening a file
vim.o.undofile = true 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 -- Case-insensitive searching UNLESS \C or one or more capital letters in the search term
vim.o.ignorecase = true vim.o.ignorecase = true