summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/undotree.lua
blob: cdd0a7c968c23a29ba855d4cf546ff4eb8396793 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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
}