1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add vim-zig.

* gnu/packages/vim.scm (vim-zig): New variable.

Change-Id: I90fa7377fa15a95553960aabef041ce31ce97650
Signed-off-by: Greg Hogan <code@greghogan.com>
This commit is contained in:
Nathan Merkley
2023-12-07 09:54:08 -07:00
committed by Greg Hogan
parent 2b0a2611a7
commit 9e8b3b8ed6

View File

@@ -1759,3 +1759,29 @@ programming language")
(description "A Vim plugin to visualize the Vim undo tree") (description "A Vim plugin to visualize the Vim undo tree")
(home-page "https://simnalamburt.github.io/vim-mundo/") (home-page "https://simnalamburt.github.io/vim-mundo/")
(license license:gpl2)))) (license license:gpl2))))
(define-public vim-zig
(let ((commit "54c216e5306a5c3878a60596aacb94dca8652ab9")
(revision "1"))
(package
(name "vim-zig")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ziglang/zig.vim")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32 "1nxwjyn3ps3c2abffai5cql3czl4kah4cin0g30damy1k99ypncb"))))
(build-system vim-build-system)
(arguments
(list
#:plugin-name "zig.vim"))
(synopsis "Vim configuration for Zig")
(description
"File detection and syntax highlighting for the zig programming
language.")
(home-page "https://github.com/ziglang/zig.vim")
(license license:expat))))