https://github.com/prod3v3loper/style-your-shell
🖥️ With these settings your shell looks very fresh and you have a better overview.
https://github.com/prod3v3loper/style-your-shell
apache bash console git iterm2 mac netbeans shell style terminal theme vscode zsh
Last synced: 3 months ago
JSON representation
🖥️ With these settings your shell looks very fresh and you have a better overview.
- Host: GitHub
- URL: https://github.com/prod3v3loper/style-your-shell
- Owner: prod3v3loper
- Created: 2021-10-17T00:12:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-09T01:26:55.000Z (about 2 years ago)
- Last Synced: 2025-05-15T00:21:58.385Z (about 1 year ago)
- Topics: apache, bash, console, git, iterm2, mac, netbeans, shell, style, terminal, theme, vscode, zsh
- Homepage:
- Size: 432 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Style your MAC Shell
To style your shell and have a better overview of your Git projects, follow the steps in the instructions.

# Instructions
Download iTerm2
https://iterm2.com/
## Shell
Install oh my zsh
https://ohmyz.sh/
```shell
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
```
### Plugins
Install plugins and add to ~/.zshrc
https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins
```
$ nano ~/.zshrc
// or
$ vi ~/.zshrc
```
```
plugins=(
git
vscode
...add more...
)
```
## Fonts
Donwload recommended fonts and install with double click.
Follow this link:
https://github.com/romkatv/powerlevel10k#meslo-nerd-font-patched-for-powerlevel10k
## Theme
https://github.com/romkatv/powerlevel10k
```bash
$ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
$ echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc
```
Now is the time to configure
```bash
p10k configure
```

Follow the steps and set everything as you want. That's it.
# Integrate in Mac Terminal

Open settings and change font in `MesloLGS NF`
# Integrate in VSC
Open settings in VSC (Visual Studio Code)
Go to Terminal/Console, scroll down to settings.json and click on it

Add following lines on top in settings under Terminal
https://code.visualstudio.com/docs/editor/integrated-terminal
```json
"terminal.integrated.fontFamily": "MesloLGS NF",
"terminal.integrated.profiles.osx": {
"my-zsh": {
"path": "zsh",
"args": ["-l"]
}
}
"terminal.integrated.defaultProfile.osx": "my-zsh"
```
# Integrate in Apache Netbeans

Go to Terminal settings and change font to `MesloLGS NF`