summaryrefslogtreecommitdiff
path: root/dot_config/nvim/lua/plugins/undotree.lua
blob: 346544690d936a5bd2632a4a683689e22dcb36b5 (plain)
1
2
3
4
5
6
7
8
return {
	"jiaoshijie/undotree",
	dependencies = "nvim-lua/plenary.nvim",
	config = true,
	keys = { -- load the plugin only when using it's keybinding:
		{ "<leader>u", "<cmd>lua require('undotree').toggle()<cr>", desc = "Toggle Undotree" },
	},
}