diff --git a/.go-version b/.go-version index a1b6e17..49e0a31 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.23 +1.23.1 diff --git a/deps/Brewfile b/deps/Brewfile index b19a8ed..b7ec422 100644 --- a/deps/Brewfile +++ b/deps/Brewfile @@ -31,3 +31,4 @@ brew 'zsh' brew 'curl' # nice postgres cli tool brew "pgcli" +brew "bufbuild/buf/buf" diff --git a/deps/go_deps.txt b/deps/go_deps.txt index afefaac..8dc5fea 100644 --- a/deps/go_deps.txt +++ b/deps/go_deps.txt @@ -2,3 +2,4 @@ mvdan.cc/sh/v3/cmd/shfmt@latest github.com/rhysd/actionlint/cmd/actionlint@latest golang.org/x/tools/gopls@latest github.com/google/yamlfmt/cmd/yamlfmt@latest +golang.org/x/tools/cmd/goimports@latest diff --git a/zsh/sourcing.zsh b/zsh/sourcing.zsh index adadc54..dc18a69 100644 --- a/zsh/sourcing.zsh +++ b/zsh/sourcing.zsh @@ -17,11 +17,13 @@ export PYRIGHT_PYTHON_FORCE_VERSION='latest' ########## export GOENV_ROOT="$HOME/.goenv" +export PATH="$HOME/go/bin:$PATH" export PATH="$GOENV_ROOT/bin:$PATH" export PATH="$GOROOT/bin:$PATH" eval "$(goenv init -)" eval "$(goenv rehash)" + ######### # CARGO # #########