dotfiles/install.sh

14 lines
519 B
Bash
Raw Normal View History

2023-06-05 14:59:28 +02:00
#!/bin/bash
2020-03-09 15:32:52 +01:00
sudo apt install zsh wget curl stow
2020-03-09 15:32:52 +01:00
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
2021-06-28 11:51:57 +02:00
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
2020-09-07 10:06:24 +02:00
./solve-stow.sh bin
./solve-stow.sh zsh
2020-12-15 20:16:09 +01:00
chsh -s $(which zsh)