From 2fab960c5970817b6923aa7f08c513c42a542861 Mon Sep 17 00:00:00 2001 From: Tim van Veenendaal Date: Mon, 28 Jun 2021 11:51:57 +0200 Subject: [PATCH] add autocomplete and zsh-z plugins --- install.sh | 3 +++ zsh/.zshrc | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 25e45db..e97be41 100755 --- a/install.sh +++ b/install.sh @@ -4,6 +4,9 @@ sudo apt install zsh wget curl cd "$(dirname "$0")" sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.oh-my-zsh/custom/themes/powerlevel10k +git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions +git clone https://github.com/agkozak/zsh-z ~/.oh-my-zsh/custom/plugins/zsh-z + ./solve-stow.sh bin ./solve-stow.sh zsh diff --git a/zsh/.zshrc b/zsh/.zshrc index 491c18e..68b5e30 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -75,7 +75,7 @@ HIST_STAMPS="yyyy-mm-dd" # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. -plugins=(git z) +plugins=(git zsh-z composer cp extract zsh-autosuggestions) source $ZSH/oh-my-zsh.sh