diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-19 16:31:52 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-19 16:31:52 +0300 |
| commit | c8738eb12f2fb99c073b1b9b4516b93725481fe6 (patch) | |
| tree | 8c3343cb7799577c56a18020b1da550bac0b8565 | |
| parent | 5302eed9cc9352271a25cebea0b821acc2b38120 (diff) | |
fish: add foostore integration via built-in fish subcommand
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
| -rw-r--r-- | fish/conf.d/foostore.fish | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fish/conf.d/foostore.fish b/fish/conf.d/foostore.fish new file mode 100644 index 0000000..5c113f0 --- /dev/null +++ b/fish/conf.d/foostore.fish @@ -0,0 +1,7 @@ +set -l foostore_bin ~/go/bin/foostore + +if test -x $foostore_bin + $foostore_bin fish | source +else + echo No $foostore_bin found +end |
