13 lines
658 B
Bash
Executable File
13 lines
658 B
Bash
Executable File
#!/bin/bash
|
|
|
|
apt update
|
|
apt install zsh
|
|
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions
|
|
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.zsh/powerlevel10k
|
|
git clone https://github.com/zsh-users/zsh-completions.git ~/.zsh/zsh-completions
|
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.zsh/zsh-syntax-highlighting
|
|
mkdir ~/.zsh/command-not-found/
|
|
curl --output ~/.zsh/command-not-found/command-not-found.plugin.zsh https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/plugins/command-not-found/command-not-found.plugin.zsh
|
|
ln ~/.config/zsh/.zshrc ~/.zshrc
|
|
chsh -s /usr/bin/zsh
|