Terminal Prompt Showcase!

Happy holidays, everyone! Celebrate this joyful time of year by showing of how you’ve decorated your terminal!

Here’s mine:

Thanks to @knowler, I’m using Spaceship with the default MacOS terminal client. Check it out here:

So what have you done with your terminal? Show us your prompt!

5 Likes

I saw this from @kellymears on Roots Slack and I need to know more… :eyes:!

I currently use Prezto with the Sorin theme on iTerm, used to use oh-my-zsh

2 Likes

I’m using oh-my-zsh with iTerm2. Powerlevel9k theme.

Left prompt for Powerline:

POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(
  os_icon
  dir
  status
  vcs
)

Other p9k directives:

POWERLEVEL9K_SHORTEN_DIR_LENGTH=1
POWERLEVEL9K_SHORTEN_DELIMITER=""
POWERLEVEL9K_SHORTEN_STRATEGY="truncate_from_right"
POWERLEVEL9K_MODE='awesome-fontconfig'

Palette:

#1e1d40, #ff03e9, #6943ff, #b362ff, #700473, #02ffff #00c7e9 cyan/blues.

Leaning hard on zsh-autosuggestions plugin.

A couple Trellis scripts I use a lot:

function work() {
  cd ~/sites/$1/trellis && vagrant up
}

function switch() {
  cd ~/sites/$1/trellis && vagrant halt && cd ~/sites/$2/trellis && vagrant up
}

function cease() {
  cd ~/sites/$1/trellis && vagrant halt;
}

:clap:t4:

8 Likes

Very cool && they work with bash too. :wink:

1 Like

This topic was automatically closed after 42 days. New replies are no longer allowed.