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()" }, + }, +}