Re: How do I install neovim plugins?

2020-09-19 Thread Yasuaki Kudo
Hi John, Ah I see let me try this as well! I need to do some gardening right now but will try after that 😄 Yasu > On Sep 20, 2020, at 09:17, John Soo wrote: > > Hello Yasu, > > I use a manifest file and guix-package -m to do declarative installations. > > I find it strikes a nice balance

Re: How do I install neovim plugins?

2020-09-19 Thread Yasuaki Kudo
Well perhaps I will try your home manager and we can even improve it 😄 I want to spend some time learning Guix - I think highly composable/customizable software is what many organizations desire and is the area that is underserved - because many software vendors are not interested, half-interes

Re: How do I install neovim plugins?

2020-09-19 Thread John Soo
Hello Yasu, I use a manifest file and guix-package -m to do declarative installations. I find it strikes a nice balance between having to rebuild for every configuration change and making my environment declarative. Good luck! - John

Re: How do I install neovim plugins?

2020-09-19 Thread Julien Lepiller
Le 19 septembre 2020 19:18:14 GMT-04:00, y...@yasuaki.com a écrit : >Hi Julien, > >Thank you for the pointer, here is what I did to make it work: > >set runtimepath+=/home/yasu/.guix-profile/share/vim/vimfiles > >The plugin and neovim were installed as below: > >guix package --install=vim-ai

Re: How do I install neovim plugins?

2020-09-19 Thread yasu
Hi Julien, Thank you for the pointer, here is what I did to make it work: set runtimepath+=/home/yasu/.guix-profile/share/vim/vimfiles The plugin and neovim were installed as below: guix package --install=vim-airline guix package --install=nvim But this seems rather "imperative" and is not

Re: How do I install neovim plugins?

2020-09-19 Thread Julien Lepiller
If you install plugins in your profile, you can add: set runpath+=/home/user/.guix-profile/share/nvim/site In your .config/nvem/init.vim I also have a guix-home-manager at https://framagit.org/tyreunom/guix-home-manager but it's more involved. Le 19 septembre 2020 10:04:45 GMT-04:00, Yasuaki

How do I install neovim plugins?

2020-09-19 Thread Yasuaki Kudo
I see some vim plugin packages for guix but I have no idea how I enable them in the neovim (nvim) that I installed in Guix. In NixOS I just used "home manager" and modified some existing template I found to add more plugins.