aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/undotree.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins/undotree.lua')
-rw-r--r--nvim/lua/plugins/undotree.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/nvim/lua/plugins/undotree.lua b/nvim/lua/plugins/undotree.lua
new file mode 100644
index 0000000..e874811
--- /dev/null
+++ b/nvim/lua/plugins/undotree.lua
@@ -0,0 +1,9 @@
+return {
+ {
+ "mbbill/undotree",
+
+ config = function()
+ vim.keymap.set('n', '<leader>u', vim.cmd.UndotreeToggle)
+ end
+ },
+}