diff --git a/README.md b/README.md
index 8e30f1a..96dd320 100644
--- a/README.md
+++ b/README.md
@@ -1,49 +1,102 @@
-## Pimp Your Terminal
-show note from youtube video ->
+# Pimp Your Terminal
-
+[](https://youtu.be/80PHRWH84Tc)
-##### Install ZSH
-`sudo apt install zsh`
-##### Set zsh as default
-`chsh -s $(which zsh)`
-##### in gnome terminal
-> **profile custom command**
+## Show note from youtube video
-##### zsh default themes
+
+
+## Change to Dracula Theam
+
+Go to Dracula Theam Webnsite And Follow The Instructions to match the terminal
+
+
+

+

+
+
+
+## Install ZSH
+
+```bash
+sudo apt install zsh
+```
+
+## Set zsh as default
+
+```bash
+chsh -s $(which zsh)`
+```
+
+# in gnome terminal
+
+### zsh default themes
+
+```bash
https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
+```
+
+### edit `.zshrc` file
+
+```bash
+nano .zshrc
+```
-edit .zshrc
+## Edit The Theam for Your Liking
+```bash
ZSH_THEME="jonathan"
+```
-##### Install ohmyzsh
-`sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"`
+## Install ohmyzsh
-##### Zsh Must-Have Plugin
-`git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions`
+```bash
+sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"`
+```
-`git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting`
+## Zsh Must-Have Plugin
-edit .zshrc to include plugins
+```bash
+git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions`
+```
+
+```bash
+git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting`
+```
+
+## Edit the `.zshrc` file to include plugins
+
+```bash
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
+```
+
+### You can Find plugins that include with ohmyzsh
-##### plugins include with ohmyzsh
+```bash
https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins
+```
+# Download Nerd Fonts
+[Nerd Font Website](https://www.nerdfonts.com/)
+
-##### Nerd Font
-https://www.nerdfonts.com/
+[Nerd Font Git-Hub](https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/FiraMono)
-https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/FiraMono
+# Download and install firamono for linux
-download and install firamono for linux
+## Install Powerlevel 10k
-##### Install Powerlevel 10k
-`git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k`
+```bash
+git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k`
+```
-edit .zshrc
+## Edit `.zshrc` File to add the theam
+```bash
ZSH_THEME="powerlevel10k/powerlevel10k"
+```
+```bash
POWERLEVEL9K_MODE="nerdfont-complete"
+```
+@ Documentation Updated By :[Asitha Kanchana Palliyaguru](https://github.com/AsithaKanchana1)
\ No newline at end of file
diff --git a/term.jpg b/img/term.jpg
similarity index 100%
rename from term.jpg
rename to img/term.jpg
diff --git a/img/theam-dracula.png b/img/theam-dracula.png
new file mode 100644
index 0000000..2b53e04
Binary files /dev/null and b/img/theam-dracula.png differ
diff --git a/img/theam-dracula2.png b/img/theam-dracula2.png
new file mode 100644
index 0000000..63db931
Binary files /dev/null and b/img/theam-dracula2.png differ