diff options
| author | Nathan Merkley <nathanmerkley@gmail.com> | 2023-12-07 09:54:07 -0700 |
|---|---|---|
| committer | Greg Hogan <code@greghogan.com> | 2025-07-09 03:49:04 +0000 |
| commit | 2b0a2611a7c9473dde5a94d4b6c041648495bc4a (patch) | |
| tree | e820f551217f08b950aec681868a76b0ff7d69b8 /gnu/packages/vim.scm | |
| parent | f570c9a5a8f322bf67cd182903f6e27ddc11a2ac (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/packages/vim.scm')
| -rw-r--r-- | gnu/packages/vim.scm | 24 |
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.") programming language") (home-page "https://github.com/vmchale/dhall-vim") (license license:bsd-3)))) + +(define-public vim-mundo + (let ((commit "b53d35fb5ca9923302b9ef29e618ab2db4cc675e") + (revision "1")) + (package + (name "vim-mundo") + (version (git-version "3.1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/simnalamburt/vim-mundo") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 "1dwrarcxrh8in78igm036lpvyww60c93vmmlk8h054i3v2p8vv59")))) + (build-system vim-build-system) + (arguments + (list + #:plugin-name "Mundo")) + (synopsis "Vim undo tree visualizer") + (description "A Vim plugin to visualize the Vim undo tree") + (home-page "https://simnalamburt.github.io/vim-mundo/") + (license license:gpl2)))) |
