unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Add more setups to Guix docs
@ 2023-10-04 15:36 Ekaitz Zarraga
  2023-10-04 16:18 ` [bug#66343] " Efraim Flashner
  0 siblings, 1 reply; 9+ messages in thread
From: Ekaitz Zarraga @ 2023-10-04 15:36 UTC (permalink / raw)
  To: guix-patches@gnu.org
  Cc: Ludovic Courtès, Simon Tournier, guix-devel\\@gnu.org

[-- Attachment #1: Type: text/plain, Size: 1165 bytes --]


------- Original Message -------
On Wednesday, October 4th, 2023 at 15:27, Ludovic Courtès <ludo@gnu.org> wrote:


> Hi,
>
> Ekaitz Zarraga ekaitz@elenq.tech skribis:
>
> > From 0c2be98f05bb288699a8e39dcef6428eb5a9dc3f Mon Sep 17 00:00:00 2001
> > Message-ID: 0c2be98f05bb288699a8e39dcef6428eb5a9dc3f.1695679042.git.ekaitz@elenq.tech
> > From: Ekaitz Zarraga ekaitz@elenq.tech
> > Date: Mon, 25 Sep 2023 16:16:28 +0200
> > Subject: [PATCH] WIP: doc: contributing: Add alternative setups section
> >
> > Start with Guile Studio and Vim/NeoVim.
> >
> > * doc/contributing.texi (Alternative Setups): Add section explaining
> > other setups that are similar to the one in The Perfect Setup
>
>
> Not a maintainer either but I like it!
>
> > +@node Alternative Setups
> > +
>
>
> I think you’re missing an @section here.
>
> > +@node Vim and NeoVim
> > +@subsection Vim and Neovim
>
>
> Which spelling is the right one? :-)
>
> Maybe send it to guix-patches@gnu.org so it passes on everyone’s radar,
> but otherwise LGTM!
>
> Ludo’.

Great!
Thanks Ludo.

Fixed!

I add guix-patches in the loop.

Thanks all,
Ekaitz

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-doc-contributing-Add-alternative-setups-section.patch --]
[-- Type: text/x-patch; name=0001-doc-contributing-Add-alternative-setups-section.patch, Size: 4328 bytes --]

From 8ea037b7d8f3472323682594266f5810fd87f291 Mon Sep 17 00:00:00 2001
Message-ID: <8ea037b7d8f3472323682594266f5810fd87f291.1696433643.git.ekaitz@elenq.tech>
From: Ekaitz Zarraga <ekaitz@elenq.tech>
Date: Mon, 25 Sep 2023 16:16:28 +0200
Subject: [PATCH] doc: contributing: Add alternative setups section

Start with Guile Studio and Vim/NeoVim.

* doc/contributing.texi (Alternative Setups): Add section explaining
  other setups that are similar to the one in The Perfect Setup
---
 doc/contributing.texi | 77 +++++++++++++++++++++++++++++++++++++++----
 1 file changed, 70 insertions(+), 7 deletions(-)

diff --git a/doc/contributing.texi b/doc/contributing.texi
index 0de47a403b..c476097bf5 100644
--- a/doc/contributing.texi
+++ b/doc/contributing.texi
@@ -23,6 +23,7 @@ Contributing
 * Building from Git::           The latest and greatest.
 * Running Guix Before It Is Installed::  Hacker tricks.
 * The Perfect Setup::           The right tools.
+* Alternative Setups::          Other posible tools that do the job.
 * Packaging Guidelines::        Growing the distribution.
 * Coding Style::                Hygiene of the contributor.
 * Submitting Patches::          Share your work.
@@ -453,6 +454,75 @@ The Perfect Setup
 Emacs Manual} and @ref{Minor Mode,,, debbugs-ug, The Debbugs User
 Guide}.
 
+@node Alternative Setups
+@section Alternative Setups
+
+Alternative setups than Emacs may let you work on Guix with a
+similar development experience and they might work better with the
+tools you currently use or help you make the transition to Emacs.
+
+The options listed below only provide the alternatives to the Emacs
+based setup, which is the most widely used in the Guix community. If
+you want to really understand how is the perfect setup for Guix
+development supposed to work, we encourage you to read the section
+before this regardless the editor you choose to use.
+
+@menu
+* Guile Studio::                First step in your transition to Emacs.
+* Vim and NeoVim::              When you are evil to the root.
+@end menu
+
+@node Guile Studio
+@subsection Guile Studio
+
+Guile Studio is a pre-configured Emacs with mostly everything you need
+to start hacking in Guile. If you are not familiar with Emacs it makes
+the transition easier for you.
+
+@example
+guix install guile-studio
+@end example
+
+Guile Studio comes with Geiser preinstalled and prepared for action.
+
+@node Vim and NeoVim
+@subsection Vim and NeoVim
+
+
+Vim (and NeoVim) are also packaged in Guix, just in case you decided
+to go for the evil path.
+
+@example
+guix install vim
+@end example
+
+If you want to enjoy a similar development experience to that in the perfect
+setup, you should install several plugins to configure the editor. Vim (and
+NeoVim) have the equivalent to Paredit,
+@uref{https://www.vim.org/scripts/script.php?script_id=3998,
+@code{paredit.vim}}, that will help you with the structural editing of Scheme
+files (the support for very large files is not great, though).
+
+@example
+guix install vim-paredit
+@end example
+
+We also recommend that you run @code{:set autoindent} so that your code is
+automatically indented as you type.
+
+For the interaction with Git,
+@uref{https://www.vim.org/scripts/script.php?script_id=2975
+@code{fugitive.vim}} is the most commonly used plugin:
+
+@example
+guix install vim-fugitive
+@end example
+
+In NeoVim you can even make a similar setup to Geiser using
+@url{https://conjure.fun/, Conjure} that lets you connect to a running Guile
+process and inject your code there live (sadly it's not packaged in Guix yet).
+
+
 @node Packaging Guidelines
 @section Packaging Guidelines
 
@@ -1257,13 +1327,6 @@ Formatting Code
 @noindent
 @xref{Invoking guix style}, for more information.
 
-@cindex Vim, Scheme code editing
-If you are editing code with Vim, we recommend that you run @code{:set
-autoindent} so that your code is automatically indented as you type.
-Additionally,
-@uref{https://www.vim.org/scripts/script.php?script_id=3998,
-@code{paredit.vim}} may help you deal with all these parentheses.
-
 We require all top-level procedures to carry a docstring.  This
 requirement can be relaxed for simple private procedures in the
 @code{(guix build @dots{})} name space, though.

base-commit: 284f8508bebcae510261c7c223dc28f9badf87ce
-- 
2.41.0


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

* Re: [bug#66343] Add more setups to Guix docs
  2023-10-04 15:36 Add more setups to Guix docs Ekaitz Zarraga
@ 2023-10-04 16:18 ` Efraim Flashner
  2023-10-04 18:15   ` Ekaitz Zarraga
  0 siblings, 1 reply; 9+ messages in thread
From: Efraim Flashner @ 2023-10-04 16:18 UTC (permalink / raw)
  To: Ekaitz Zarraga
  Cc: 66343, guix-devel\\@gnu.org, Ludovic Courtès, Simon Tournier

[-- Attachment #1: Type: text/plain, Size: 6499 bytes --]

I think we can mention guix.vim also

On Wed, Oct 04, 2023 at 03:36:18PM +0000, Ekaitz Zarraga wrote:
> 
> ------- Original Message -------
> On Wednesday, October 4th, 2023 at 15:27, Ludovic Courtès <ludo@gnu.org> wrote:
> 
> 
> > Hi,
> >
> > Ekaitz Zarraga ekaitz@elenq.tech skribis:
> >
> > > From 0c2be98f05bb288699a8e39dcef6428eb5a9dc3f Mon Sep 17 00:00:00 2001
> > > Message-ID: 0c2be98f05bb288699a8e39dcef6428eb5a9dc3f.1695679042.git.ekaitz@elenq.tech
> > > From: Ekaitz Zarraga ekaitz@elenq.tech
> > > Date: Mon, 25 Sep 2023 16:16:28 +0200
> > > Subject: [PATCH] WIP: doc: contributing: Add alternative setups section
> > >
> > > Start with Guile Studio and Vim/NeoVim.
> > >
> > > * doc/contributing.texi (Alternative Setups): Add section explaining
> > > other setups that are similar to the one in The Perfect Setup
> >
> >
> > Not a maintainer either but I like it!
> >
> > > +@node Alternative Setups
> > > +
> >
> >
> > I think you’re missing an @section here.
> >
> > > +@node Vim and NeoVim
> > > +@subsection Vim and Neovim
> >
> >
> > Which spelling is the right one? :-)
> >
> > Maybe send it to guix-patches@gnu.org so it passes on everyone’s radar,
> > but otherwise LGTM!
> >
> > Ludo’.
> 
> Great!
> Thanks Ludo.
> 
> Fixed!
> 
> I add guix-patches in the loop.
> 
> Thanks all,
> Ekaitz

> From 8ea037b7d8f3472323682594266f5810fd87f291 Mon Sep 17 00:00:00 2001
> Message-ID: <8ea037b7d8f3472323682594266f5810fd87f291.1696433643.git.ekaitz@elenq.tech>
> From: Ekaitz Zarraga <ekaitz@elenq.tech>
> Date: Mon, 25 Sep 2023 16:16:28 +0200
> Subject: [PATCH] doc: contributing: Add alternative setups section
> 
> Start with Guile Studio and Vim/NeoVim.
> 
> * doc/contributing.texi (Alternative Setups): Add section explaining
>   other setups that are similar to the one in The Perfect Setup
> ---
>  doc/contributing.texi | 77 +++++++++++++++++++++++++++++++++++++++----
>  1 file changed, 70 insertions(+), 7 deletions(-)
> 
> diff --git a/doc/contributing.texi b/doc/contributing.texi
> index 0de47a403b..c476097bf5 100644
> --- a/doc/contributing.texi
> +++ b/doc/contributing.texi
> @@ -23,6 +23,7 @@ Contributing
>  * Building from Git::           The latest and greatest.
>  * Running Guix Before It Is Installed::  Hacker tricks.
>  * The Perfect Setup::           The right tools.
> +* Alternative Setups::          Other posible tools that do the job.
>  * Packaging Guidelines::        Growing the distribution.
>  * Coding Style::                Hygiene of the contributor.
>  * Submitting Patches::          Share your work.
> @@ -453,6 +454,75 @@ The Perfect Setup
>  Emacs Manual} and @ref{Minor Mode,,, debbugs-ug, The Debbugs User
>  Guide}.
>  
> +@node Alternative Setups
> +@section Alternative Setups
> +
> +Alternative setups than Emacs may let you work on Guix with a
> +similar development experience and they might work better with the
> +tools you currently use or help you make the transition to Emacs.
> +
> +The options listed below only provide the alternatives to the Emacs
> +based setup, which is the most widely used in the Guix community. If
> +you want to really understand how is the perfect setup for Guix
> +development supposed to work, we encourage you to read the section
> +before this regardless the editor you choose to use.
> +
> +@menu
> +* Guile Studio::                First step in your transition to Emacs.
> +* Vim and NeoVim::              When you are evil to the root.
> +@end menu
> +
> +@node Guile Studio
> +@subsection Guile Studio
> +
> +Guile Studio is a pre-configured Emacs with mostly everything you need
> +to start hacking in Guile. If you are not familiar with Emacs it makes
> +the transition easier for you.
> +
> +@example
> +guix install guile-studio
> +@end example
> +
> +Guile Studio comes with Geiser preinstalled and prepared for action.
> +
> +@node Vim and NeoVim
> +@subsection Vim and NeoVim
> +
> +
> +Vim (and NeoVim) are also packaged in Guix, just in case you decided
> +to go for the evil path.
> +
> +@example
> +guix install vim
> +@end example
> +
> +If you want to enjoy a similar development experience to that in the perfect
> +setup, you should install several plugins to configure the editor. Vim (and
> +NeoVim) have the equivalent to Paredit,
> +@uref{https://www.vim.org/scripts/script.php?script_id=3998,
> +@code{paredit.vim}}, that will help you with the structural editing of Scheme
> +files (the support for very large files is not great, though).
> +
> +@example
> +guix install vim-paredit
> +@end example
> +
> +We also recommend that you run @code{:set autoindent} so that your code is
> +automatically indented as you type.
> +
> +For the interaction with Git,
> +@uref{https://www.vim.org/scripts/script.php?script_id=2975
> +@code{fugitive.vim}} is the most commonly used plugin:
> +
> +@example
> +guix install vim-fugitive
> +@end example
> +

And of course if you want to interact with Guix directly from inside of
vim, using the built-in terminal emulator, we have our very own
@code{guix.vim} package!

@example
guix install vim-guix-vim
@end example

> +In NeoVim you can even make a similar setup to Geiser using
> +@url{https://conjure.fun/, Conjure} that lets you connect to a running Guile
> +process and inject your code there live (sadly it's not packaged in Guix yet).
> +
> +
>  @node Packaging Guidelines
>  @section Packaging Guidelines
>  
> @@ -1257,13 +1327,6 @@ Formatting Code
>  @noindent
>  @xref{Invoking guix style}, for more information.
>  
> -@cindex Vim, Scheme code editing
> -If you are editing code with Vim, we recommend that you run @code{:set
> -autoindent} so that your code is automatically indented as you type.
> -Additionally,
> -@uref{https://www.vim.org/scripts/script.php?script_id=3998,
> -@code{paredit.vim}} may help you deal with all these parentheses.
> -
>  We require all top-level procedures to carry a docstring.  This
>  requirement can be relaxed for simple private procedures in the
>  @code{(guix build @dots{})} name space, though.
> 
> base-commit: 284f8508bebcae510261c7c223dc28f9badf87ce
> -- 
> 2.41.0
> 


-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [bug#66343] Add more setups to Guix docs
  2023-10-04 16:18 ` [bug#66343] " Efraim Flashner
@ 2023-10-04 18:15   ` Ekaitz Zarraga
  2023-10-04 18:35     ` Efraim Flashner
  0 siblings, 1 reply; 9+ messages in thread
From: Ekaitz Zarraga @ 2023-10-04 18:15 UTC (permalink / raw)
  To: Efraim Flashner
  Cc: 66343, guix-devel\\\\@gnu.org, Ludovic Courtès,
	Simon Tournier



------- Original Message -------
On Wednesday, October 4th, 2023 at 16:18, Efraim Flashner <efraim@flashner.co.il> wrote:


> I think we can mention guix.vim also


Certainly, do you want to add it yourself?

Nobody is going to explain it better than you.

:)


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

* Re: [bug#66343] Add more setups to Guix docs
  2023-10-04 18:15   ` Ekaitz Zarraga
@ 2023-10-04 18:35     ` Efraim Flashner
  2023-10-04 18:47       ` Ekaitz Zarraga
  0 siblings, 1 reply; 9+ messages in thread
From: Efraim Flashner @ 2023-10-04 18:35 UTC (permalink / raw)
  To: Ekaitz Zarraga
  Cc: 66343, guix-devel\\\\@gnu.org, Ludovic Courtès,
	Simon Tournier

[-- Attachment #1: Type: text/plain, Size: 628 bytes --]

On Wed, Oct 04, 2023 at 06:15:53PM +0000, Ekaitz Zarraga wrote:
> 
> 
> ------- Original Message -------
> On Wednesday, October 4th, 2023 at 16:18, Efraim Flashner <efraim@flashner.co.il> wrote:
> 
> 
> > I think we can mention guix.vim also
> 
> 
> Certainly, do you want to add it yourself?
> 
> Nobody is going to explain it better than you.

I tossed in a line or two in the middle of the patch

-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [bug#66343] Add more setups to Guix docs
  2023-10-04 18:35     ` Efraim Flashner
@ 2023-10-04 18:47       ` Ekaitz Zarraga
  2023-10-04 20:51         ` Efraim Flashner
  0 siblings, 1 reply; 9+ messages in thread
From: Ekaitz Zarraga @ 2023-10-04 18:47 UTC (permalink / raw)
  To: Efraim Flashner
  Cc: 66343, guix-devel\\\\\\\\@gnu.org, Ludovic Courtès,
	Simon Tournier


------- Original Message -------
On Wednesday, October 4th, 2023 at 18:35, Efraim Flashner <efraim@flashner.co.il> wrote:


> On Wed, Oct 04, 2023 at 06:15:53PM +0000, Ekaitz Zarraga wrote:
> 
> > ------- Original Message -------
> > On Wednesday, October 4th, 2023 at 16:18, Efraim Flashner efraim@flashner.co.il wrote:
> > 
> > > I think we can mention guix.vim also
> > 
> > Certainly, do you want to add it yourself?
> > 
> > Nobody is going to explain it better than you.
> 
> 
> I tossed in a line or two in the middle of the patch

But you didn't attach, did you?

Or you directly commited?


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

* Re: [bug#66343] Add more setups to Guix docs
  2023-10-04 18:47       ` Ekaitz Zarraga
@ 2023-10-04 20:51         ` Efraim Flashner
  2023-10-04 20:55           ` Ekaitz Zarraga
  0 siblings, 1 reply; 9+ messages in thread
From: Efraim Flashner @ 2023-10-04 20:51 UTC (permalink / raw)
  To: Ekaitz Zarraga; +Cc: 66343, guix-devel, Ludovic Courtès, Simon Tournier


[-- Attachment #1.1: Type: text/plain, Size: 1428 bytes --]

On Wed, Oct 04, 2023 at 06:47:51PM +0000, Ekaitz Zarraga wrote:
> 
> ------- Original Message -------
> On Wednesday, October 4th, 2023 at 18:35, Efraim Flashner <efraim@flashner.co.il> wrote:
> 
> 
> > On Wed, Oct 04, 2023 at 06:15:53PM +0000, Ekaitz Zarraga wrote:
> > 
> > > ------- Original Message -------
> > > On Wednesday, October 4th, 2023 at 16:18, Efraim Flashner efraim@flashner.co.il wrote:
> > > 
> > > > I think we can mention guix.vim also
> > > 
> > > Certainly, do you want to add it yourself?
> > > 
> > > Nobody is going to explain it better than you.
> > 
> > 
> > I tossed in a line or two in the middle of the patch
> 
> But you didn't attach, did you?
> 
> Or you directly commited?

I commented directly in the middle of the patch.

> +@example
> +guix install vim-fugitive
> +@end example
> +

And of course if you want to interact with Guix directly from inside of
vim, using the built-in terminal emulator, we have our very own
@code{guix.vim} package!

@example
guix install vim-guix-vim
@end example

> +In NeoVim you can even make a similar setup to Geiser using
> +@url{https://conjure.fun/, Conjure} that lets you connect to a running Guile

-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #1.2: v2-0001-doc-contributing-Add-alternative-setups-section.patch --]
[-- Type: text/plain, Size: 4944 bytes --]

From 410eff90c552977a209db2c56538166ec5455be1 Mon Sep 17 00:00:00 2001
Message-ID: <410eff90c552977a209db2c56538166ec5455be1.1696452671.git.efraim@flashner.co.il>
From: Ekaitz Zarraga <ekaitz@elenq.tech>
Date: Mon, 25 Sep 2023 16:16:28 +0200
Subject: [PATCH v2] doc: contributing: Add alternative setups section

Start with Guile Studio and Vim/NeoVim.

* doc/contributing.texi (Alternative Setups): Add section explaining
other setups that are similar to the one in The Perfect Setup
---
 doc/contributing.texi | 85 +++++++++++++++++++++++++++++++++++++++----
 1 file changed, 78 insertions(+), 7 deletions(-)

diff --git a/doc/contributing.texi b/doc/contributing.texi
index 0de47a403b..f7c72634e7 100644
--- a/doc/contributing.texi
+++ b/doc/contributing.texi
@@ -23,6 +23,7 @@ Contributing
 * Building from Git::           The latest and greatest.
 * Running Guix Before It Is Installed::  Hacker tricks.
 * The Perfect Setup::           The right tools.
+* Alternative Setups::          Other posible tools that do the job.
 * Packaging Guidelines::        Growing the distribution.
 * Coding Style::                Hygiene of the contributor.
 * Submitting Patches::          Share your work.
@@ -453,6 +454,83 @@ The Perfect Setup
 Emacs Manual} and @ref{Minor Mode,,, debbugs-ug, The Debbugs User
 Guide}.
 
+@node Alternative Setups
+@section Alternative Setups
+
+Alternative setups than Emacs may let you work on Guix with a
+similar development experience and they might work better with the
+tools you currently use or help you make the transition to Emacs.
+
+The options listed below only provide the alternatives to the Emacs
+based setup, which is the most widely used in the Guix community. If
+you want to really understand how is the perfect setup for Guix
+development supposed to work, we encourage you to read the section
+before this regardless the editor you choose to use.
+
+@menu
+* Guile Studio::                First step in your transition to Emacs.
+* Vim and NeoVim::              When you are evil to the root.
+@end menu
+
+@node Guile Studio
+@subsection Guile Studio
+
+Guile Studio is a pre-configured Emacs with mostly everything you need
+to start hacking in Guile. If you are not familiar with Emacs it makes
+the transition easier for you.
+
+@example
+guix install guile-studio
+@end example
+
+Guile Studio comes with Geiser preinstalled and prepared for action.
+
+@node Vim and NeoVim
+@subsection Vim and NeoVim
+
+
+Vim (and NeoVim) are also packaged in Guix, just in case you decided
+to go for the evil path.
+
+@example
+guix install vim
+@end example
+
+If you want to enjoy a similar development experience to that in the perfect
+setup, you should install several plugins to configure the editor. Vim (and
+NeoVim) have the equivalent to Paredit,
+@uref{https://www.vim.org/scripts/script.php?script_id=3998,
+@code{paredit.vim}}, that will help you with the structural editing of Scheme
+files (the support for very large files is not great, though).
+
+@example
+guix install vim-paredit
+@end example
+
+We also recommend that you run @code{:set autoindent} so that your code is
+automatically indented as you type.
+
+For the interaction with Git,
+@uref{https://www.vim.org/scripts/script.php?script_id=2975
+@code{fugitive.vim}} is the most commonly used plugin:
+
+@example
+guix install vim-fugitive
+@end example
+
+And of course if you want to interact with Guix directly from inside of
+vim, using the built-in terminal emulator, we have our very own
+@code{guix.vim} package!
+
+@example
+guix install vim-guix-vim
+@end example
+
+In NeoVim you can even make a similar setup to Geiser using
+@url{https://conjure.fun/, Conjure} that lets you connect to a running Guile
+process and inject your code there live (sadly it's not packaged in Guix yet).
+
+
 @node Packaging Guidelines
 @section Packaging Guidelines
 
@@ -1257,13 +1335,6 @@ Formatting Code
 @noindent
 @xref{Invoking guix style}, for more information.
 
-@cindex Vim, Scheme code editing
-If you are editing code with Vim, we recommend that you run @code{:set
-autoindent} so that your code is automatically indented as you type.
-Additionally,
-@uref{https://www.vim.org/scripts/script.php?script_id=3998,
-@code{paredit.vim}} may help you deal with all these parentheses.
-
 We require all top-level procedures to carry a docstring.  This
 requirement can be relaxed for simple private procedures in the
 @code{(guix build @dots{})} name space, though.

base-commit: e71864793021051cff35597abd59bb2d5649977d
prerequisite-patch-id: f3ace8d09a8dea9552cefac6971f2dc48480e326
-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [bug#66343] Add more setups to Guix docs
  2023-10-04 20:51         ` Efraim Flashner
@ 2023-10-04 20:55           ` Ekaitz Zarraga
  2023-10-05 12:07             ` Efraim Flashner
  0 siblings, 1 reply; 9+ messages in thread
From: Ekaitz Zarraga @ 2023-10-04 20:55 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: 66343, guix-devel, Ludovic Courtès, Simon Tournier





ElenQ Technology


------- Original Message -------
On Wednesday, October 4th, 2023 at 20:51, Efraim Flashner <efraim@flashner.co.il> wrote:


> On Wed, Oct 04, 2023 at 06:47:51PM +0000, Ekaitz Zarraga wrote:
> 
> > ------- Original Message -------
> > On Wednesday, October 4th, 2023 at 18:35, Efraim Flashner efraim@flashner.co.il wrote:
> > 
> > > On Wed, Oct 04, 2023 at 06:15:53PM +0000, Ekaitz Zarraga wrote:
> > > 
> > > > ------- Original Message -------
> > > > On Wednesday, October 4th, 2023 at 16:18, Efraim Flashner efraim@flashner.co.il wrote:
> > > > 
> > > > > I think we can mention guix.vim also
> > > > 
> > > > Certainly, do you want to add it yourself?
> > > > 
> > > > Nobody is going to explain it better than you.
> > > 
> > > I tossed in a line or two in the middle of the patch
> > 
> > But you didn't attach, did you?
> > 
> > Or you directly commited?
> 
> 
> I commented directly in the middle of the patch.
> 
> > +@example
> > +guix install vim-fugitive
> > +@end example
> > +
> 
> 
> And of course if you want to interact with Guix directly from inside of
> vim, using the built-in terminal emulator, we have our very own
> @code{guix.vim} package!
> 
> @example
> guix install vim-guix-vim
> @end example
> 
> > +In NeoVim you can even make a similar setup to Geiser using
> > +@url{https://conjure.fun/, Conjure} that lets you connect to a running Guile
> 
> 
> --
> Efraim Flashner efraim@flashner.co.il רנשלפ םירפא
> 
> GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
> Confidentiality cannot be guaranteed on emails sent or received unencrypted

It looks good to me.

Commit?


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

* Re: [bug#66343] Add more setups to Guix docs
  2023-10-04 20:55           ` Ekaitz Zarraga
@ 2023-10-05 12:07             ` Efraim Flashner
  2023-10-05 12:12               ` Ekaitz Zarraga
  0 siblings, 1 reply; 9+ messages in thread
From: Efraim Flashner @ 2023-10-05 12:07 UTC (permalink / raw)
  To: Ekaitz Zarraga
  Cc: 66343-done, guix-devel, Ludovic Courtès, Simon Tournier

[-- Attachment #1: Type: text/plain, Size: 360 bytes --]

On Wed, Oct 04, 2023 at 08:55:32PM +0000, Ekaitz Zarraga wrote:
> 
> It looks good to me.
> 
> Commit?

Looks good to me too. Patch pushed!

-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [bug#66343] Add more setups to Guix docs
  2023-10-05 12:07             ` Efraim Flashner
@ 2023-10-05 12:12               ` Ekaitz Zarraga
  0 siblings, 0 replies; 9+ messages in thread
From: Ekaitz Zarraga @ 2023-10-05 12:12 UTC (permalink / raw)
  To: Efraim Flashner
  Cc: 66343-done, guix-devel, Ludovic Courtès, Simon Tournier

Thank you all for the collaboration!


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

end of thread, other threads:[~2023-10-05 12:13 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-04 15:36 Add more setups to Guix docs Ekaitz Zarraga
2023-10-04 16:18 ` [bug#66343] " Efraim Flashner
2023-10-04 18:15   ` Ekaitz Zarraga
2023-10-04 18:35     ` Efraim Flashner
2023-10-04 18:47       ` Ekaitz Zarraga
2023-10-04 20:51         ` Efraim Flashner
2023-10-04 20:55           ` Ekaitz Zarraga
2023-10-05 12:07             ` Efraim Flashner
2023-10-05 12:12               ` Ekaitz Zarraga

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).