Add ohmyzsh plugin, change installation of pyenv

This commit is contained in:
Fabian Becker 2021-04-26 10:47:28 +02:00
parent 81e282a975
commit c20a84ff16
No known key found for this signature in database
GPG Key ID: A8C282BC79C830AC
4 changed files with 7 additions and 4 deletions

1
.zshrc
View File

@ -3,7 +3,6 @@ ZSH_THEME="robbyrussell"
# Plugins # Plugins
plugins=( plugins=(
poetry
git git
zsh-autosuggestions zsh-autosuggestions
) )

2
apt.sh
View File

@ -8,7 +8,7 @@ apt update
# Upgrade already installed packages # Upgrade already installed packages
apt upgrade apt upgrade
# Install packages # Install packages (this works on Ubuntu 20.04+)
apt install -y \ apt install -y \
jq \ jq \
neovim \ neovim \

View File

@ -3,9 +3,15 @@
# Install oh-my-zsh # Install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# Install zsh-autosuggestions plugin
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
# Install asdf-vm # Install asdf-vm
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.8.0 git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.8.0
# Install pyenv
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
# Install starship # Install starship
sh -c "$(curl -fsSL https://starship.rs/install.sh)" sh -c "$(curl -fsSL https://starship.rs/install.sh)"

View File

@ -16,6 +16,4 @@ brew install nvim
brew install ripgrep brew install ripgrep
brew install fzf brew install fzf
brew install direnv brew install direnv
brew install pyenv
brew install starship
brew install jq brew install jq