From: gyara via Guix-patches via <guix-patches@gnu.org>
To: 57456@debbugs.gnu.org
Cc: gyara <me@gyara.moe>
Subject: [bug#57456] [PATCH v2] gnu: Add neovim-packer.
Date: Sun, 28 Aug 2022 17:21:07 +0900 [thread overview]
Message-ID: <4d2f631d0a57d0ef06423068330554566435c4d0.1661674866.git.me@gyara.moe> (raw)
In-Reply-To: <6cd04239206a8a85b0d20ec5a5904b071d800b53.1661660180.git.me@gyara.moe>
---
gnu/packages/vim.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index a07c681cb3..9a234d260e 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -639,6 +639,33 @@ (define-public editorconfig-vim
editors.")
(license license:bsd-2)))
+(define-public neovim-packer
+ (let ((commit "3a9f9801f683946b9f1047d8f4bf9946c29e927d")
+ (revision "0"))
+ (package
+ (name "neovim-packer")
+ (version (git-version "0.0.0" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/wbthomason/packer.nvim")
+ (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/")
+ ("doc" "share/nvim/site/pack/packer/start/packer/"))))
+ (home-page "https://github.com/wbthomason/packer.nvim")
+ (synopsis "Plugin manager for Neovim")
+ (description
+ "This package provides a plugin manager for Neovim, inspired by Emacs's
+ @code{euse-package}. It's written in Lua, supports Luarocks dependencies,
+ and is based on Vim's builtin plugin support.")
+ (license license:expat))))
+
(define-public neovim-syntastic
(package
(inherit vim-syntastic)
--
2.37.2
next prev parent reply other threads:[~2022-08-28 8:53 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
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 ` gyara via Guix-patches via [this message]
2022-08-28 8:25 ` [bug#57456] [PATCH v2] " ( 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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4d2f631d0a57d0ef06423068330554566435c4d0.1661674866.git.me@gyara.moe \
--to=guix-patches@gnu.org \
--cc=57456@debbugs.gnu.org \
--cc=me@gyara.moe \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.