summaryrefslogtreecommitdiff
path: root/dot_config/nvim/lua/plugins/undotree.lua
blob: 3a6d160ec2a05e144f44e1b21f2c1499d01cc6d1 (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" },
    },
}