Hello everyone.
I'm kinda new to using zsh and powerlevel9k but after configuring it I encountered the following issue:
When i open my terminal (Tillix) the icons aren't loaded, as you can see below. But when I source ~/.zshrc all icons appear nicely. What I'm missing? I'm using the SourceCodePro+Powerline+Awesome font.

This is my .zshrc
````
export ZSH=/home/jonathan/.oh-my-zsh
ZSH_THEME="powerlevel9k/powerlevel9k"
plugins=(
git
zsh-autosuggestions
)
source $ZSH/oh-my-zsh.sh
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
source /etc/profile.d/vte.sh
fi
POWERLEVEL9K_MODE='awesome-patched'
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_DISABLE_RPROMPT=true
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(ssh context dir_writable dir vcs)
````
I'd try moving your last 4 lines of your .zshrc above the line source $ZSH/oh-my-zsh.sh. That's how I have my .zshrc set up.
@areinmeyer
Thank you so much. It worked perfectly.
Most helpful comment
I'd try moving your last 4 lines of your
.zshrcabove the linesource $ZSH/oh-my-zsh.sh. That's how I have my.zshrcset up.