From 66d989ab8b92a3605d7739e26f5050ddb35bb50a Mon Sep 17 00:00:00 2001 From: pr0c3550r Date: Wed, 1 Mar 2023 21:30:11 +0100 Subject: [PATCH] added undotree to plugins (u) --- nvim/.config/nvim/lua/plugin/undotree.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 nvim/.config/nvim/lua/plugin/undotree.lua diff --git a/nvim/.config/nvim/lua/plugin/undotree.lua b/nvim/.config/nvim/lua/plugin/undotree.lua new file mode 100644 index 0000000..7aa474d --- /dev/null +++ b/nvim/.config/nvim/lua/plugin/undotree.lua @@ -0,0 +1,9 @@ +return { + { + "mbbill/undotree", + keys = { + { "u", "UndotreeToggle", desc = "toggle undotree" }, + }, + + } +}