feat(util): add and setup restish CLI tool

This commit is contained in:
Jim Myhrberg
2024-08-21 16:26:37 +01:00
parent 97a7844508
commit 4e461ad88c
3 changed files with 9 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ show_tools = false
"cargo:watchexec-cli" = "latest" "cargo:watchexec-cli" = "latest"
"go:github.com/DarthSim/hivemind" = "latest" "go:github.com/DarthSim/hivemind" = "latest"
"go:github.com/bufbuild/buf-language-server/cmd/bufls" = "latest" "go:github.com/bufbuild/buf-language-server/cmd/bufls" = "latest"
"go:github.com/danielgtaylor/restish" = "latest"
"go:github.com/go-delve/delve/cmd/dlv" = "latest" "go:github.com/go-delve/delve/cmd/dlv" = "latest"
"go:github.com/golang/mock/mockgen" = "latest" "go:github.com/golang/mock/mockgen" = "latest"
"go:github.com/hashicorp/terraform-ls" = "latest" "go:github.com/hashicorp/terraform-ls" = "latest"

7
zsh/restish.zsh Normal file
View File

@@ -0,0 +1,7 @@
#
# restish Setup
#
if command-exists restish; then
setup-completions restish "$(command-path restish)" restish completion zsh
fi

1
zshrc
View File

@@ -280,6 +280,7 @@ source "$DOTZSH/less.zsh"
source "$DOTZSH/mise.zsh" source "$DOTZSH/mise.zsh"
source "$DOTZSH/neovim.zsh" source "$DOTZSH/neovim.zsh"
source "$DOTZSH/nix.zsh" source "$DOTZSH/nix.zsh"
source "$DOTZSH/restish.zsh"
source "$DOTZSH/tldr.zsh" source "$DOTZSH/tldr.zsh"
source "$DOTZSH/tmux.zsh" source "$DOTZSH/tmux.zsh"
source "$DOTZSH/zoxide.zsh" source "$DOTZSH/zoxide.zsh"