Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lestex committed Jan 23, 2024
1 parent 574de15 commit b05ba33
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .config/zsh/.zshrc-linux
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,7 @@ export GOENV_ROOT="$HOME/.goenv"
export PATH="$GOENV_ROOT/bin:$PATH"
eval "$(goenv init -)"

eval "$(~/.rbenv/bin/rbenv init - zsh)"

# Completion for zsh
source "/usr/share/google-cloud-sdk/completion.zsh.inc"
9 changes: 9 additions & 0 deletions scripts/linux-pre
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ pretty_print "${green}Changing zshrc config${neutral}"
cp .config/zsh/.zshrc-linux $HOME/.zshrc

pretty_print "${green}Configuring vscode${neutral}"
mkdir -p $HOME/.config/Code/User/
cp .config/code/settings.json $HOME/.config/Code/User/settings.json

if [ ! -d $HOME/.config/vifm/colors ];
Expand Down Expand Up @@ -110,4 +111,12 @@ else
pretty_print "${yellow}goenv is already installed, skipping ...${neutral}"
fi

if [ ! -d "$HOME/.rbenv" ];
then
pretty_print "${green}Installing rbenv...${neutral}"
git clone --depth=1 https://github.com/rbenv/rbenv.git ~/.rbenv
else
pretty_print "${yellow}rbenv is already installed, skipping ...${neutral}"
fi

pretty_print "${green}We are done!...everything looks good!${neutral}"

0 comments on commit b05ba33

Please sign in to comment.