Files
nvim/lua/conf/plugins/undotree.lua
2025-05-31 03:32:58 -04:00

12 lines
210 B
Lua

local map = core.misc.map
return { "mbbill/undotree",
function()
if vim.g.loaded_undotree then
vim.g.undotree_DiffAutoOpen = 0
end
map("n", "<leader>u", "<cmd>UndotreeToggle<CR>")
end
}