Notepad/enter/Coding Tips (Classical)/Terminal Tips/1. Terminals/Shells/Zsh.md

28 lines
820 B
Markdown
Raw Normal View History

2023-07-05 18:29:11 +00:00
# Zsh
Zsh is a bit trendier nowadays and it is the current shell of choice for my system now. So, having tips of navigation here is a bit important.
To check which shell you are using:
```
echo $SHELL
```
2023-07-05 18:29:11 +00:00
---
- Oh-my-zsh is a very popular customization tool to [pimp](https://stackabuse.com/pimp-my-terminal-an-introduction-to-oh-my-zsh/) out your terminal
cool terminal [customizations](https://ohmyposh.dev/docs/themes) with [oh my posh ](https://ohmyposh.dev/)
- ![[Pasted image 20230724024452.png]]
- [Zap](https://www.zapzsh.org) is another little zsh plugin manager
- For scripting tests, try out [zunit](https://zunit.xyz/docs/usage/running-tests/)
- ![[Pasted image 20230901141639.png]]
Switch to `zsh`:
```
exec zsh
```
This won't affect new terminal windows or anything, but it's convenient.