unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#57456] [PATCH] gnu: Add neovim-packer.
@ 2022-08-28  4:16 gyara via Guix-patches via
  2022-08-28  7:38 ` ( via Guix-patches via
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: gyara via Guix-patches via @ 2022-08-28  4:16 UTC (permalink / raw)
  To: 57456; +Cc: gyara

---
This patch add neovim-packer, a neovim plugin manager to guix.

 gnu/packages/vim.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index a07c681cb3..d1d8588562 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -639,6 +639,34 @@ (define-public editorconfig-vim
 editors.")
     (license license:bsd-2)))
 
+(define-public neovim-packer
+  (let ((commit "3a9f9801f683946b9f1047d8f4bf9946c29e927d")
+        (revision "1"))
+    (package
+      (name "neovim-packer")
+      (version (git-version "0.0.0" revision commit))
+      (home-page "https://github.com/wbthomason/packer.nvim")
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/wbthomason/packer.nvim.git")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "1xn08z3a21mgfvp5i1nv57jnldwxwnl5nkryiff3zc99b1mizigp"))))
+      (build-system copy-build-system)
+      (arguments
+       '(#:install-plan '(("lua"
+                           "share/nvim/site/pack/packer/start/packer.nvim/")
+                          ("doc"
+                           "share/nvim/site/pack/packer/start/packer.nvim/"))))
+      (synopsis "Neovim Plugin manager")
+      (description
+       "A use-package inspired plugin manager for Neovim. Uses native packages,
+      supports Luarocks dependencies, written in Lua, allows for expressive config")
+      (license license:expat))))
+
 (define-public neovim-syntastic
   (package
     (inherit vim-syntastic)
-- 
2.37.2





^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2022-09-06 14:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-28  4:16 [bug#57456] [PATCH] gnu: Add neovim-packer gyara via Guix-patches via
2022-08-28  7:38 ` ( via Guix-patches via
2022-08-28  8:21   ` ギャラ via Guix-patches via
2022-08-28  8:21 ` [bug#57456] [PATCH v2] " gyara via Guix-patches via
2022-08-28  8:25   ` ( via Guix-patches via
2022-08-28  9:11 ` [bug#57456] [PATCH v3] " gyara via Guix-patches via
2022-08-28  9:16   ` ( via Guix-patches via
2022-08-29  4:01 ` [bug#57456] Packer.nvim hard code its name ギャラ via Guix-patches via
2022-08-29  4:01 ` [bug#57456] [PATCH v4] gnu: Add neovim-packer gyara via Guix-patches via
2022-09-06 14:32   ` bug#57456: [PATCH] " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).