We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 648471c commit 9fa095eCopy full SHA for 9fa095e
1 file changed
init.lua
@@ -121,6 +121,9 @@ vim.o.breakindent = true
121
122
-- Enable undo/redo changes even after closing and reopening a file
123
vim.o.undofile = true
124
+-- To open a visual and interactive undo tree, type :Undotree
125
+-- See `:help :Undotree`
126
+vim.schedule(function() vim.cmd.packadd 'nvim.undotree' end)
127
128
-- Case-insensitive searching UNLESS \C or one or more capital letters in the search term
129
vim.o.ignorecase = true
0 commit comments