From 2eee8ff406777208bdb4552206194373b6b88b35 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Wed, 15 Jan 2025 23:00:11 +0100 Subject: [PATCH] NeoVIM: add undo tree plugin --- Configs/nvim/lua/plugins/undotree.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Configs/nvim/lua/plugins/undotree.lua diff --git a/Configs/nvim/lua/plugins/undotree.lua b/Configs/nvim/lua/plugins/undotree.lua new file mode 100644 index 0000000..1fe3fc9 --- /dev/null +++ b/Configs/nvim/lua/plugins/undotree.lua @@ -0,0 +1,8 @@ +return { + "jiaoshijie/undotree", + dependencies = "nvim-lua/plenary.nvim", + config = true, + keys = { -- load the plugin only when using it's keybinding: + { "u", "lua require('undotree').toggle()" }, + }, +}