Re: Trying to create a .zshrc in guix home environment referencing a zsh plugin

2024-01-25 Thread Abbé
On Sunday, January 21st, 2024 at 1:10 PM, Saku Laesvuori wrote: > > [reformatted] > > > > (zshrc > > (list (computed-file > > "zshrc" > > #~(begin > > (reduce string-append "" > > (list "bindkey -e\n" > > (format #f "source ~s/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh\n" > > #$zsh-syn

Re: Trying to create a .zshrc in guix home environment referencing a zsh plugin

2024-01-21 Thread Saku Laesvuori
> [reformatted] > > (zshrc > (list (computed-file > "zshrc" > #~(begin > (reduce string-append "" > (list "bindkey -e\n" > (format #f "source > ~s/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh\n" >

Trying to create a .zshrc in guix home environment referencing a zsh plugin

2024-01-21 Thread A
Hi! I'm trying Guix for my home environment (on a non-Guix distribution). The problem I am facing is when I try to use the `zsh-syntax-highlighting' plugin in my .zshrc through home configuration. Following is my configuration (config.scm): -- (use-modul