diff options
author | Nathan Merkley <nathanmerkley@gmail.com> | 2023-12-07 09:54:05 -0700 |
---|---|---|
committer | Greg Hogan <code@greghogan.com> | 2025-07-09 03:49:03 +0000 |
commit | 3e5fc9aff8410ad67b0e0c290c442b67d93b8185 (patch) | |
tree | 6c2231da134b6c6da74cb81c1b63eebddcc31d6d | |
parent | bbf584b1ec875db5cf5fea9acb0384f23227ba60 (diff) |
gnu: Add vim-guile.
* gnu/packages/vim.scm (vim-guile): New variable.
Change-Id: I2f69a563681693de9af563caa545f6421f61a093
Signed-off-by: Greg Hogan <code@greghogan.com>
-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 5bc9d9635f..fdaa656ec8 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -1681,3 +1681,31 @@ a range like :7,17Commentary, or as part of a :global invocation like with :g/TODO/Commentary.") (home-page "https://www.vim.org/scripts/script.php?script_id=3695") (license license:vim)))) + +(define-public vim-guile + (let ((commit "f76959a9dbdc69cde018901de82ac5a3d443843c") + (revision "1")) + (package + (name "vim-guile") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/HiPhish/guile.vim") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 "1pqlhssdnpd8ngjc5bssma7ddjhffvh8hj67gchmyyxr5jfxwdq9")))) + (build-system vim-build-system) + (arguments + (list + #:plugin-name "guile.vim")) + (synopsis "Syntax highlighting for GNU Guile") + (description + "This plugin extends Vim's Scheme support to include the additions to +the language provided by the GNU Guile implementation. The plugin automatically +detects whether a Scheme file is a Guile file and adds syntax highlighting for +Guile's special forms.") + (home-page "https://github.com/HiPhish/guile.vim") + (license license:expat)))) |