diff --git a/lua/astrocommunity/editing-support/undotree/README.md b/lua/astrocommunity/editing-support/undotree/README.md new file mode 100644 index 000000000..9906da0f9 --- /dev/null +++ b/lua/astrocommunity/editing-support/undotree/README.md @@ -0,0 +1,5 @@ +# undotree + +The undo history visualizer for VIM + +**Repository:** diff --git a/lua/astrocommunity/editing-support/undotree/init.lua b/lua/astrocommunity/editing-support/undotree/init.lua new file mode 100644 index 000000000..67654c71c --- /dev/null +++ b/lua/astrocommunity/editing-support/undotree/init.lua @@ -0,0 +1,19 @@ +---@type LazySpec +return { + "mbbill/undotree", + cmd = "UndotreeToggle", + dependencies = { + "AstroNvim/astrocore", + ---@type AstroCoreOpts + opts = { + mappings = { + n = { + ["fu"] = { + "UndotreeToggle", + desc = "Find undotree", + }, + }, + }, + }, + }, +}