I currently use the default Oh My Zsh theme for my terminal. Itβs configured by default to only display the current directory. I wanted to instead show the full path. Hereβs how to change that using vim.
# 1. Open the themes settings file
vim ~/.oh-my-zsh/themes/robbyrussell.zsh-theme
# 2. Replace %c% with %~%
:s/%c%/%\~%
# 3. Save and quit
:wq