diff options
| author | Nathan Merkley <nathanmerkley@gmail.com> | 2023-12-07 09:54:09 -0700 |
|---|---|---|
| committer | Greg Hogan <code@greghogan.com> | 2025-07-09 03:49:05 +0000 |
| commit | 0eb7f3d98936f6aeef76b45ef08da987cf7d212a (patch) | |
| tree | ce9e44275906205699e2df639c7b8868db355703 /gnu/packages/vim.scm | |
| parent | 9e8b3b8ed60b434c892a0968dedc5eba55dc4c64 (diff) | |
gnu: Add vim-plantuml-syntax.
* gnu/packages/vim.scm (vim-plantuml-syntax): New variable.
Change-Id: I3e116520239bb66b1140e5bbd40659b3681f77e6
Signed-off-by: Greg Hogan <code@greghogan.com>
Diffstat (limited to 'gnu/packages/vim.scm')
| -rw-r--r-- | gnu/packages/vim.scm | 28 |
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") | |||
| 1785 | language.") | 1785 | language.") |
| 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 | ||
| 1811 | plantuml for *.pu, *.uml, *.puml, *.iuml or *.plantuml files or if the first | ||
| 1812 | line of a file contains @@startuml. Additionally the makeprg is set to plantuml | ||
| 1813 | assuming you have this executable in your path.") | ||
| 1814 | (home-page "https://github.com/aklt/plantuml-syntax") | ||
| 1815 | (license license:vim)))) | ||
