feat: add gh plugins
This commit is contained in:
parent
e3d43d8411
commit
6220fac3e1
2 changed files with 13 additions and 2 deletions
12
bootstrap.sh
12
bootstrap.sh
|
@ -132,6 +132,15 @@ install_nvm() {
|
||||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
install_gh_plugins() {
|
||||||
|
pre_step "Installing gh cli plugins"
|
||||||
|
|
||||||
|
gh extension install nektos/gh-act
|
||||||
|
gh extension install dlvhdr/gh-dash
|
||||||
|
|
||||||
|
gh extension upgrade --all
|
||||||
|
}
|
||||||
|
|
||||||
install_pyenv() {
|
install_pyenv() {
|
||||||
pre_step "Install and configure pyenv"
|
pre_step "Install and configure pyenv"
|
||||||
|
|
||||||
|
@ -193,7 +202,7 @@ inject_vim_configuration() {
|
||||||
#
|
#
|
||||||
###########################################################
|
###########################################################
|
||||||
|
|
||||||
TOTAL_STEPS=9
|
TOTAL_STEPS=10
|
||||||
|
|
||||||
# Refer to steps.sh for step definition.
|
# Refer to steps.sh for step definition.
|
||||||
bootstrap() {
|
bootstrap() {
|
||||||
|
@ -205,6 +214,7 @@ bootstrap() {
|
||||||
install_rust
|
install_rust
|
||||||
install_pyenv
|
install_pyenv
|
||||||
install_nvm
|
install_nvm
|
||||||
|
install_gh_plugins
|
||||||
|
|
||||||
# Shell & prompt setup
|
# Shell & prompt setup
|
||||||
install_omz
|
install_omz
|
||||||
|
|
|
@ -2,3 +2,4 @@ zsh
|
||||||
tmux
|
tmux
|
||||||
postgresql
|
postgresql
|
||||||
postgresql-contrib
|
postgresql-contrib
|
||||||
|
gh
|
||||||
|
|
Loading…
Reference in a new issue