Tips to Beautify Terminal

How To Make Macos Terminal Look Beautiful

  1. Download brew :

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  1. Lalu Install iterm2

brew install --cask iterm2
  1. Install Oh My Zsh Using Curl :

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
  1. Lalu Install Powerlevel9k/Powerlevel10k

git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k

Edit Bagian ~/.zshrc Dan Set ZSH_THEME="powerlevel10k/powerlevel10k"

Keluar Dari Terminal, Lalu Buka Kembali :

  1. Install

  • zsh-autosuggestions

  • zsh-syntax-highlighting

  • zsh-completions

Folder : ~/.oh-my-zsh/plugins

cd ~/.oh-my-zsh/plugins
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
git clone https://github.com/zsh-users/zsh-autosuggestions.git
git clone https://github.com/zsh-users/zsh-completions.git

Lalu Buka File ~/.zshrc Dan ketik :

source ~/.oh-my-zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source ~/.oh-my-zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
source ~/.oh-my-zsh/plugins/zsh-completions/zsh-completions.plugin.zsh

Last updated

Was this helpful?