From 6f7e60a49e5a567dce697a80bc21400d6900f0af Mon Sep 17 00:00:00 2001 From: yashwankhede Date: Mon, 24 Apr 2023 12:47:54 +0530 Subject: [PATCH] Zshell config. added to README.md file --- README.md | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/README.md b/README.md index 8da2a1c..a5996b4 100644 --- a/README.md +++ b/README.md @@ -2991,6 +2991,78 @@ while read a b; do yes $b |head -n $a ; done + More plugins + + + +#### Themes: +```bash +ZSH_THEME="agnoster" +``` +
+ More themes +
    +
  • agnoster - Displays important information in bright colors against a dark background.
  • +
  • bira - Minimalist theme that displays basic information such as the current directory, Git branch, and exit status.
  • +
  • robbyrussell - Simple, clean theme that displays the current directory and Git branch.
  • +
  • fishy - Elegant and minimal theme with fish-like color scheme.
  • +
  • lambda - Displays current directory, Git branch, Python virtual environment, and other useful information.
  • +
  • powerlevel9k - Highly customizable theme that allows you to display a lot of information in a compact space.
  • +
  • spaceship - Clean and minimal theme that displays information in a user-friendly way.
  • +
  • ys - Simple theme that displays the current directory and Git branch, with a subtle color scheme.
  • +
+
+ +#### 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 +``` + + ## Others [[back to top](#handy-bash-one-liners)]