summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-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 98e96b331fb..d8b5caa7f1f 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -980,6 +980,34 @@ asynchronous adapters (including tmux, screen, and a headless mode), and when
980the job completes, errors will be loaded and parsed automatically.") 980the job completes, errors will be loaded and parsed automatically.")
981 (license license:vim))) 981 (license license:vim)))
982 982
983(define-public vim-gemini-vim
984 ;; No releases have been tagged.
985 (let ((commit "f300c54174fc0db8fb68f1bc04307b58612e9630")
986 (revision "1"))
987 (package
988 (name "vim-gemini-vim")
989 (version (git-version "0.0.0" revision commit))
990 (source
991 (origin
992 (method git-fetch)
993 (uri (git-reference
994 (url "https://git.sr.ht/~torresjrjr/gemini.vim")
995 (commit commit)))
996 (file-name (git-file-name name version))
997 (sha256
998 (base32 "05ffhhfahjqwxyrqmsinsahrs15wknzl2qbj8mznyv319mn2civ2"))))
999 (build-system copy-build-system)
1000 (arguments
1001 `(#:install-plan
1002 '(("ftdetect" "share/vim/vimfiles/")
1003 ("syntax" "share/vim/vimfiles/"))))
1004 (home-page "https://git.sr.ht/~torresjrjr/gemini.vim")
1005 (synopsis "Vim syntax highlighting plugin for Gemini")
1006 (description "This Vim plugin provides a Vim syntax highlighting plugin
1007for Gemini Text, the text/gemini media type, as defined in the Gemini protocol
1008specification.")
1009 (license license:gpl3))))
1010
983(define-public vim-eunuch 1011(define-public vim-eunuch
984 (let ((commit "33e875b31c8b811a0a47908884a5e2339106bbe8") 1012 (let ((commit "33e875b31c8b811a0a47908884a5e2339106bbe8")
985 (revision "1")) 1013 (revision "1"))