Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
103 changes: 78 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,49 +1,102 @@
## Pimp Your Terminal
show note from youtube video ->
# Pimp Your Terminal

![term.jpg](term.jpg)
[![Upgrade Your Terminal](https://img.youtube.com/vi/80PHRWH84Tc/maxresdefault.jpg)](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
![term.jpg](/img/term.jpg)

## Change to Dracula Theam

Go to Dracula Theam Webnsite And Follow The Instructions to match the terminal

<div style="display: flex; gap: 20px; flex-wrap: wrap;">
<img src="img/theam-dracula.png" alt="draculaIMG1" width="400"/>
<img src="img/theam-dracula2.png" alt="draculaIMG2" width="400"/>
<!-- add more images as needed -->
</div>

## 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/)
<br>

##### 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)
File renamed without changes
Binary file added img/theam-dracula.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/theam-dracula2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.