13 lines
625 B
Plaintext
13 lines
625 B
Plaintext
|
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
|
||
|
git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
|
||
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
|
||
|
export ZSH=$HOME/.oh-my-zsh
|
||
|
CASE_SENSITIVE="true"
|
||
|
ENABLE_CORRECTION="true"
|
||
|
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
|
||
|
source $ZSH/oh-my-zsh.sh
|
||
|
|
||
|
#optional
|
||
|
git clone --recursive https://github.com/mengelbrecht/slimline.git ~/.oh-my-zsh/custom/themes/slimline
|
||
|
source ~/.oh-my-zsh/custom/themes/slimline/slimline.zsh
|