Using zsh with oh-my-zsh, git support, and ZSH Powerlevel9k Theme on Ubuntu 18.04 installed as described here: https://linuxhint.com/install_zsh_shell_ubuntu_1804/
To get a hint on a new open line:
/usr/share/powerlevel9k/powerlevel9k.zsh-theme
Look for the left_prompt_end () function
The function is as follows:
# End the left prompt, closes the final segment. left_prompt_end() { if [[ -n $CURRENT_BG ]]; then echo -n "%k%F{$CURRENT_BG}$(print_icon 'LEFT_SEGMENT_SEPARATOR')" else echo -n "%k" fi echo -n "%f$(print_icon 'LEFT_SEGMENT_END_SEPARATOR')" CURRENT_BG='' }
Just add one newline command. The function should now look like this:
# End the left prompt, closes the final segment. left_prompt_end() { if [[ -n $CURRENT_BG ]]; then echo -n "%k%F{$CURRENT_BG}$(print_icon 'LEFT_SEGMENT_SEPARATOR')\n" else echo -n "%k" fi echo -n "%f$(print_icon 'LEFT_SEGMENT_END_SEPARATOR')" CURRENT_BG='' }
The following line has been changed from:
echo -n "%k%F{$CURRENT_BG}$(print_icon 'LEFT_SEGMENT_SEPARATOR')"
In order to:
echo -n "%k%F{$CURRENT_BG}$(print_icon 'LEFT_SEGMENT_SEPARATOR')\n"
Tell me on a new line: 
mogensf
source share