documentation refactoring
This commit is contained in:
61
docs/shells/zsh.md
Normal file
61
docs/shells/zsh.md
Normal file
@@ -0,0 +1,61 @@
|
||||
# zsh / ohmyzsh
|
||||
|
||||
## Install
|
||||
|
||||
**Sources**
|
||||
https://github.com/ohmyzsh/ohmyzsh/wiki/Installing-ZSH
|
||||
|
||||
### Debian/Ubuntu
|
||||
|
||||
``` bash
|
||||
sudo apt install zsh
|
||||
```
|
||||
|
||||
### Fedora
|
||||
|
||||
``` bash
|
||||
dnf install zsh
|
||||
|
||||
# Make it default shell
|
||||
sudo lchsh $USER
|
||||
```
|
||||
|
||||
### ohmyzsh
|
||||
|
||||
#### Install
|
||||
|
||||
``` bash
|
||||
|
||||
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
||||
|
||||
```
|
||||
|
||||
## Plugins
|
||||
|
||||
Currenty testing
|
||||
|
||||
* git
|
||||
* web-search
|
||||
* timer
|
||||
|
||||
|
||||
## themes
|
||||
|
||||
- <https://github.com/EliverLara/Nordic>
|
||||
|
||||
### shell
|
||||
|
||||
- zsh
|
||||
|
||||
```bash
|
||||
sudo apt install zsh
|
||||
chsh -s /bin/zsh $whoami
|
||||
sudo apt-get install fonts-powerline
|
||||
|
||||
#source https://ohmyz.sh/#install
|
||||
ssh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
|
||||
|
||||
#~/home/.zshrc
|
||||
#ZSH_THEME="agnoster"
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user