62 lines
786 B
Markdown
62 lines
786 B
Markdown
# 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"
|
|
|
|
```
|