Compare commits
No commits in common. "07d93ee063c5d329024d6ecb9c0e6072be95152b" and "7a0806ce7588256d8aa46a6e563ecd779e9f0302" have entirely different histories.
07d93ee063
...
7a0806ce75
3
.tool-versions
Normal file
3
.tool-versions
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
nodejs 16.5.0
|
||||||
|
golang 1.16.2
|
||||||
|
kubectl 1.21.2
|
10
Makefile
10
Makefile
@ -36,10 +36,16 @@ pre-reqs: ## Install all required binaries.
|
|||||||
which btm > /dev/null || cargo install bottom; \
|
which btm > /dev/null || cargo install bottom; \
|
||||||
which procs > /dev/null || brew install procs; \
|
which procs > /dev/null || brew install procs; \
|
||||||
which dog > /dev/null || brew install dog; \
|
which dog > /dev/null || brew install dog; \
|
||||||
|
which asdf > /dev/null || brew install asdf; \
|
||||||
brew install gpg gawk coreutils; \
|
brew install gpg gawk coreutils; \
|
||||||
git clone https://github.com/zsh-users/zsh-autosuggestions $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions; \
|
git clone https://github.com/zsh-users/zsh-autosuggestions $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions; \
|
||||||
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting; \
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting; \
|
||||||
RUST_WITHOUT=rust-docs asdf plugin-add rust https://github.com/asdf-community/asdf-rust.git;
|
asdf plugin add nodejs; \
|
||||||
|
asdf plugin add ruby; \
|
||||||
|
asdf plugin-add kubectl https://github.com/asdf-community/asdf-kubectl.git; \
|
||||||
|
RUST_WITHOUT=rust-docs asdf plugin-add rust https://github.com/asdf-community/asdf-rust.git; \
|
||||||
|
asdf plugin-add golang https://github.com/kennyp/asdf-golang.git; \
|
||||||
|
asdf install 1> /dev/null;
|
||||||
|
|
||||||
.PHONY: upgrade
|
.PHONY: upgrade
|
||||||
upgrade: ## Upgrade all required binaries.
|
upgrade: ## Upgrade all required binaries.
|
||||||
@ -72,8 +78,10 @@ upgrade: ## Upgrade all required binaries.
|
|||||||
which btm > /dev/null && cargo install bottom; \
|
which btm > /dev/null && cargo install bottom; \
|
||||||
which procs > /dev/null && brew upgrade procs; \
|
which procs > /dev/null && brew upgrade procs; \
|
||||||
which dog > /dev/null && brew upgrade dog; \
|
which dog > /dev/null && brew upgrade dog; \
|
||||||
|
which asdf > /dev/null && brew upgrade asdf; \
|
||||||
cd $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions && git pull && cd -; \
|
cd $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions && git pull && cd -; \
|
||||||
cd $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting && git pull && cd -; \
|
cd $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting && git pull && cd -; \
|
||||||
|
asdf plugin update --all; \
|
||||||
cd ~/.oh-my-zsh && git pull && cd -; \
|
cd ~/.oh-my-zsh && git pull && cd -; \
|
||||||
npm install -g git-split-diffs;
|
npm install -g git-split-diffs;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user