summaryrefslogtreecommitdiff
path: root/gnu/packages/shellutils.scm
diff options
context:
space:
mode:
authorTrevor Arjeski <tmarjeski@gmail.com>2024-06-02 23:20:42 +0300
committerAndreas Enge <andreas@enge.fr>2024-06-29 11:55:33 +0200
commitb6ef3cfdf0e948f3f5e291cbfefea5e5a13068a7 (patch)
treecfc5e760dfcbc159d04db87a16f849b68d467e20 /gnu/packages/shellutils.scm
parent97684fa209f77abe6f5f4f972bfdb3102eb42687 (diff)
gnu: Add fzf-tab.
* gnu/packages/shellutils.scm (fzf-tab): New variable. Change-Id: I821eb28c9ac12e8d6449ce7bc389538d260d6091 Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/shellutils.scm')
-rw-r--r--gnu/packages/shellutils.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index be8d9bdc25e..a6a8bb0cd13 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -912,3 +912,30 @@ with Guix Home:
912 \"source \" liquidprompt \"/share/liquidprompt/themes/powerline/powerline.theme\")))))) 912 \"source \" liquidprompt \"/share/liquidprompt/themes/powerline/powerline.theme\"))))))
913@end example\n") 913@end example\n")
914 (license license:agpl3+))) 914 (license license:agpl3+)))
915
916(define-public fzf-tab
917 (package
918 (name "fzf-tab")
919 (version "1.1.2")
920 (home-page "https://github.com/Aloxaf/fzf-tab")
921 (source (origin
922 (method git-fetch)
923 (uri (git-reference
924 (url "https://github.com/Aloxaf/fzf-tab")
925 (commit (string-append "v" version))))
926 (file-name (git-file-name name version))
927 (sha256
928 (base32
929 "061jjpgghn8d5q2m2cd2qdjwbz38qrcarldj16xvxbid4c137zs2"))))
930 (build-system copy-build-system)
931 (arguments
932 '(#:install-plan '(("lib" "/share/zsh/plugins/fzf-tab/")
933 ("modules" "/share/zsh/plugins/fzf-tab/")
934 ("fzf-tab.plugin.zsh" "/share/zsh/plugins/fzf-tab/")
935 ("fzf-tab.zsh" "/share/zsh/plugins/fzf-tab/")
936 ("README.md" "/share/doc/fzf-tab/"))))
937 (synopsis "Replace the zsh default completion menu with fzf")
938 (description
939 "The fzf-tab package replaces the default completion menu of the zsh
940shell with fzf, enabling fuzzy finding and multi-selection.")
941 (license license:expat)))