From c20a84ff16927fb34943f7285df70ae6e6721aad Mon Sep 17 00:00:00 2001 From: Fabian Becker Date: Mon, 26 Apr 2021 10:47:28 +0200 Subject: [PATCH] Add ohmyzsh plugin, change installation of pyenv --- .zshrc | 1 - apt.sh | 2 +- bootstrap.sh | 6 ++++++ brew.sh | 2 -- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.zshrc b/.zshrc index b6b5e61..2c5b710 100644 --- a/.zshrc +++ b/.zshrc @@ -3,7 +3,6 @@ ZSH_THEME="robbyrussell" # Plugins plugins=( - poetry git zsh-autosuggestions ) diff --git a/apt.sh b/apt.sh index 68f4f0e..59d1edb 100644 --- a/apt.sh +++ b/apt.sh @@ -8,7 +8,7 @@ apt update # Upgrade already installed packages apt upgrade -# Install packages +# Install packages (this works on Ubuntu 20.04+) apt install -y \ jq \ neovim \ diff --git a/bootstrap.sh b/bootstrap.sh index f826f16..8e96257 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -3,9 +3,15 @@ # Install oh-my-zsh 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 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 sh -c "$(curl -fsSL https://starship.rs/install.sh)" diff --git a/brew.sh b/brew.sh index be105f0..da66062 100644 --- a/brew.sh +++ b/brew.sh @@ -16,6 +16,4 @@ brew install nvim brew install ripgrep brew install fzf brew install direnv -brew install pyenv -brew install starship brew install jq