feat: built-in undotree plugin
This commit is contained in:
parent
cfdc17be3a
commit
6d0b5bd7dc
3
init.lua
3
init.lua
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue