summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/vim.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 64cd710b7e4..16382535add 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1785,3 +1785,31 @@ programming language")
1785language.") 1785language.")
1786 (home-page "https://github.com/ziglang/zig.vim") 1786 (home-page "https://github.com/ziglang/zig.vim")
1787 (license license:expat)))) 1787 (license license:expat))))
1788
1789(define-public vim-plantuml-syntax
1790 (let ((commit "845abb56dcd3f12afa6eb47684ef5ba3055802b8")
1791 (revision "1"))
1792 (package
1793 (name "vim-plantuml-syntax")
1794 (version (git-version "0.0.0" revision commit))
1795 (source
1796 (origin
1797 (method git-fetch)
1798 (uri (git-reference
1799 (url "https://github.com/aklt/plantuml-syntax")
1800 (commit commit)))
1801 (file-name (string-append name "-" version "-checkout"))
1802 (sha256
1803 (base32 "0d2frv6knkj4bjavq2c2kx8qdnmcq0d8l04a5z7bpqwkmrrhd31f"))))
1804 (build-system vim-build-system)
1805 (arguments
1806 (list
1807 #:plugin-name "plantuml-syntax"))
1808 (synopsis "Syntax highlighting for PlantUML")
1809 (description
1810 "This is a vim syntax file for PlantUML. The filetype will be set to
1811plantuml for *.pu, *.uml, *.puml, *.iuml or *.plantuml files or if the first
1812line of a file contains @@startuml. Additionally the makeprg is set to plantuml
1813assuming you have this executable in your path.")
1814 (home-page "https://github.com/aklt/plantuml-syntax")
1815 (license license:vim))))