summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNathan Merkley <nathanmerkley@gmail.com>2023-12-07 09:54:07 -0700
committerGreg Hogan <code@greghogan.com>2025-07-09 03:49:04 +0000
commit2b0a2611a7c9473dde5a94d4b6c041648495bc4a (patch)
treee820f551217f08b950aec681868a76b0ff7d69b8 /gnu
parentf570c9a5a8f322bf67cd182903f6e27ddc11a2ac (diff)
gnu: Add vim-mundo.
* gnu/packages/vim.scm (vim-mundo): New variable. Change-Id: Ic0a96540117c55731ef8f615e916a2ef41a9d0c0 Signed-off-by: Greg Hogan <code@greghogan.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/vim.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 72b0e406276..69abad50a41 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1735,3 +1735,27 @@ Guile's special forms.")
1735programming language") 1735programming language")
1736 (home-page "https://github.com/vmchale/dhall-vim") 1736 (home-page "https://github.com/vmchale/dhall-vim")
1737 (license license:bsd-3)))) 1737 (license license:bsd-3))))
1738
1739(define-public vim-mundo
1740 (let ((commit "b53d35fb5ca9923302b9ef29e618ab2db4cc675e")
1741 (revision "1"))
1742 (package
1743 (name "vim-mundo")
1744 (version (git-version "3.1.0" revision commit))
1745 (source
1746 (origin
1747 (method git-fetch)
1748 (uri (git-reference
1749 (url "https://github.com/simnalamburt/vim-mundo")
1750 (commit commit)))
1751 (file-name (string-append name "-" version "-checkout"))
1752 (sha256
1753 (base32 "1dwrarcxrh8in78igm036lpvyww60c93vmmlk8h054i3v2p8vv59"))))
1754 (build-system vim-build-system)
1755 (arguments
1756 (list
1757 #:plugin-name "Mundo"))
1758 (synopsis "Vim undo tree visualizer")
1759 (description "A Vim plugin to visualize the Vim undo tree")
1760 (home-page "https://simnalamburt.github.io/vim-mundo/")
1761 (license license:gpl2))))