summaryrefslogtreecommitdiff
path: root/gnu/packages/vim.scm
diff options
context:
space:
mode:
authorLiliana Marie Prikler <liliana.prikler@gmail.com>2023-10-23 21:09:49 +0200
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2023-10-23 21:09:49 +0200
commite38d6a9c2fba815ac34e74baa843f15e33846813 (patch)
tree0a3dd602449386119fc15de32a5cf7e5f607b2a1 /gnu/packages/vim.scm
parentda716c8b9cdc358609a368bd5da70b31cd97a938 (diff)
parentcbd20d627497053871db863970c07d93c7081786 (diff)
Merge branch 'master' into gnome-team
Change-Id: Ib6f55bebef2fb235fa59fd5442102a3e0ace3191
Diffstat (limited to 'gnu/packages/vim.scm')
-rw-r--r--gnu/packages/vim.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 1085db9d44..d2ea9b7ae1 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -618,6 +618,30 @@ It keeps the same selective contrast relationships and overall feel when
switching between the light and dark background modes.")
(license license:expat))))
+(define-public vim-rainbow
+ (package
+ (name "vim-rainbow")
+ (version "5c8094b56568aeaeda9cc09b3ebc6d2ed95e1ad8")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mason1920/rainbow")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1jya8wwlkmgs89hndrq6gsaskhk9g0fh62wdib8v9vz2x5g3738z"))))
+ (build-system copy-build-system)
+ (arguments
+ '(#:install-plan '(("opt" "share/vim/vimfiles/pack/rainbow/"))))
+ (home-page "https://github.com/mason1920/rainbow")
+ (synopsis "Rainbow Parentheses Improved")
+ (description
+ "As everyone knows, the most complex codes were composed of a mass of different
+kinds of parentheses (typically: lisp). This plugin will help you read these
+codes by showing different levels of parentheses in different colors.")
+ (license license:asl2.0)))
+
(define-public editorconfig-vim
(package
(name "editorconfig-vim")