diff --git a/README.md b/README.md index 8da2a1c..8653892 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ Here's a more stylish version of [Bash-Oneliner](https://onceupon.github.io/Bash - [Hardware](#hardware) - [Networking](#networking) - [Data Wrangling](#data-wrangling) +- [Zshell](#zshell) - [Others](#others) ## Terminal Tricks @@ -2991,6 +2992,81 @@ while read a b; do yes $b |head -n $a ; done + More plugins + + + +#### Themes: +```bash +ZSH_THEME="agnoster" +``` +
+ More themes + +
+ +#### Aliases: +```bash +alias ls='ls --color=auto' +``` + +##### Restart Zsh: +#### This will reload your Zsh configuration without needing to log out and log back in: +```bash +source ~/.zshrc +``` + + +>>>>>>> f551098 (Signed-off-by: yashwankhede ) ## Others [[back to top](#handy-bash-one-liners)]