mirror of https://codeberg.org/anemofilia/zero
12 lines
295 B
Scheme
12 lines
295 B
Scheme
|
(define-module (home-environments radio fish-configs)
|
||
|
#:use-module (guix gexp)
|
||
|
|
||
|
#:export (fzf))
|
||
|
|
||
|
(define fzf
|
||
|
(plain-file "fish-fzf.fish"
|
||
|
(string-join
|
||
|
`("fzf_configure_bindings --directory=@@ --history= --processes= "
|
||
|
"bind -M default / _fzf_search_history")
|
||
|
"\n")))
|