From 8c6f15a97910d2786968818fc8ecf82a73df24c3 Mon Sep 17 00:00:00 2001 From: Tissevert Date: Fri, 30 Apr 2021 19:04:35 +0200 Subject: [PATCH] Add package for vim-solarized --- gnu/packages/vim.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 47ac984fc7..477c15b9aa 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2019, 2020 Jakub Kądziołka ;;; Copyright © 2020 Jack Hill ;;; Copyright © 2021 Simon Tournier +;;; Copyright © 2021 Tissevert ;;; ;;; This file is part of GNU Guix. ;;; @@ -579,6 +580,30 @@ are detected, the user is notified.") (home-page "https://github.com/vim-syntastic/syntastic") (license license:wtfpl2))) +(define-public vim-solarized + (package + (name "vim-solarized") + (version "v1.0.0beta1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/altercation/vim-colors-solarized") + (commit "528a59f26d12278698bb946f8fb82a63711eec21"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "05d3lmd1shyagvr3jygqghxd3k8a4vp32723fvxdm57fdrlyzcm1")))) + (build-system copy-build-system) + (arguments + '(#:install-plan + '(("colors" "share/vim/vimfiles/") + ("doc" "share/vim/vimfiles/")))) + (home-page "https://github.com/altercation/vim-colors-solarized") + (synopsis "Solarized Colorscheme for Vim") + (description "Precision colors for machines and people") + (license license:bsd-3))) + (define-public editorconfig-vim (package (name "editorconfig-vim") -- 2.31.1