mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 10:06:40 +00:00
fix(golang): install Go dev tools with go install and general CLI tools with mise
This commit is contained in:
@@ -19,7 +19,16 @@ list_go_global_packages() {
|
||||
}
|
||||
|
||||
install_go_global_packages() {
|
||||
local packages=()
|
||||
local packages=(
|
||||
"github.com/fatih/gomodifytags@latest"
|
||||
"github.com/go-delve/delve/cmd/dlv@latest"
|
||||
"github.com/josharian/impl@latest"
|
||||
"github.com/rogpeppe/godef@latest"
|
||||
"golang.org/x/tools/cmd/godoc@latest"
|
||||
"golang.org/x/tools/cmd/goimports@latest"
|
||||
"golang.org/x/tools/gopls@latest"
|
||||
"golang.org/x/vuln/cmd/govulncheck@latest"
|
||||
)
|
||||
|
||||
for package in "${packages[@]}"; do
|
||||
echo "installing/updating \"$package\""
|
||||
|
||||
Reference in New Issue
Block a user