2016-01-23 00:58:21 +00:00
|
|
|
# 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`
|
|
|
|
|
2016-04-23 01:53:14 +00:00
|
|
|
`ln -s ~/.dotfiles/zsh/zshrc ~/.zshrc`
|
2016-01-23 00:58:21 +00:00
|
|
|
|
|
|
|
Create a symlink for `.zlogin`
|
|
|
|
|
2016-04-23 01:53:14 +00:00
|
|
|
`ln -s ~/.dotfiles/zsh/zlogin ~/.zlogin`
|
2016-01-23 00:58:21 +00:00
|
|
|
|
2016-02-04 03:36:55 +00:00
|
|
|
Add .zsh files to ~/.oh-my-zsh/custom
|
|
|
|
|
2016-04-23 01:53:14 +00:00
|
|
|
`ln -s ~/.dotfiles/zsh/alert.zsh ~/.oh-my-zsh/custom/alert.zsh`
|
|
|
|
|
|
|
|
`ln -s ~/.dotfiles/zsh/ssh-agent.zsh ~/.oh-my-zsh/custom/ssh-agent.zsh`
|
|
|
|
|
2016-01-23 00:58:21 +00:00
|
|
|
[1]: https://github.com/robbyrussell/oh-my-zsh
|
|
|
|
[2]: https://github.com/zsh-users/zsh-completions
|