DEV Community

Discussion on: Quick Setup of Oh My ZSH! terminal on Ubuntu

Collapse
 
dimitri_acosta profile image
Dimitri Acosta

If you're using agnoster as a theme then you should install one of the patched fonts from Vim-Powerline for special characters.

Also, if you don't want to see your username at the begining of the prompt (as I would recommend) then you'll have to add this to your ~/.zshrc file

...
DEFAULT_USER="your_username"
prompt_context(){}
...

This will hide the user@hostname info

Collapse
 
lauragift21 profile image
Gift Egwuenu

Thanks for the tip this is helpful.