12 lines
355 B
Bash
12 lines
355 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
||
|
|
||
|
sed -i 's/ZSH_THEME=.*/ZSH_THEME="bureau"/' ~/.zshrc
|
||
|
|
||
|
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
||
|
|
||
|
sed -i 's/plugins=(git)/plugins=(\ngit\nzsh-autosuggestions\n)/' ~/.zshrc
|
||
|
|
||
|
zsh
|