mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add vim-rainbow
* gnu/packages/vim.scm (vim-rainbow): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
504fdfb56f
commit
63d2241ff9
1 changed files with 24 additions and 0 deletions
|
@ -618,6 +618,30 @@ (define-public vim-solarized
|
||||||
switching between the light and dark background modes.")
|
switching between the light and dark background modes.")
|
||||||
(license license:expat))))
|
(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
|
(define-public editorconfig-vim
|
||||||
(package
|
(package
|
||||||
(name "editorconfig-vim")
|
(name "editorconfig-vim")
|
||||||
|
|
Loading…
Reference in a new issue