From 82aa8be47a6d8257458892d551798822beb1ed46 Mon Sep 17 00:00:00 2001 From: Charles Hawley Date: Mon, 25 May 2020 15:37:55 -0400 Subject: [PATCH] --- Install-zsh-completions.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Install-zsh-completions.md diff --git a/Install-zsh-completions.md b/Install-zsh-completions.md new file mode 100644 index 0000000..c0d23a4 --- /dev/null +++ b/Install-zsh-completions.md @@ -0,0 +1,15 @@ +# Install zsh completions + +```shell +sudo sh -c "echo 'deb http://download.opensuse.org/repositories/shells:/zsh-users:/zsh-completions/xUbuntu_18.04/ /' > /etc/apt/sources.list.d/shells:zsh-users:zsh-completions.list" + +wget -nv https://download.opensuse.org/repositories/shells:zsh-users:zsh-completions/xUbuntu_18.10/Release.key -O Release.key + +sudo apt-key add - < Release.key + +rm Release.key + +sudo apt update + +sudo apt-get install zsh-completions +``` \ No newline at end of file