31 lines
569 B
Markdown
31 lines
569 B
Markdown
|
# ZSH
|
||
|
|
||
|
* oh-my-zsh. ([source][1])
|
||
|
* zsh-completions plugin. ([source][2])
|
||
|
|
||
|
Install & use zsh
|
||
|
|
||
|
`pacman -S zsh`
|
||
|
|
||
|
`chsh -s /bin/zsh`
|
||
|
|
||
|
Install oh-my-zsh
|
||
|
|
||
|
`git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh`
|
||
|
|
||
|
Install zsh-completions plugin
|
||
|
|
||
|
`git clone https://github.com/zsh-users/zsh-completions
|
||
|
~/.oh-my-zsh/custom/plugins/zsh-completions`
|
||
|
|
||
|
Create a symlink for `.zshrc`
|
||
|
|
||
|
`ln -s zshrc ~/.zshrc`
|
||
|
|
||
|
Create a symlink for `.zlogin`
|
||
|
|
||
|
`ln -s zlogin ~/.zlogin`
|
||
|
|
||
|
[1]: https://github.com/robbyrussell/oh-my-zsh
|
||
|
[2]: https://github.com/zsh-users/zsh-completions
|