I was colorizing my prompt. I did it in .zshrc file .zshrc
PROMPT=$'%B%{\e[38;2;224;108;117m('
PROMPT+=$'%{\e[38;2;229;192;123m%n'
PROMPT+=$'%{\e[38;2;97;175;239m%(#..@)'
PROMPT+=$'%{\e[38;2;152;195;121m%m'
PROMPT+=$'%{\e[38;2;224;108;117m)-['
PROMPT+=$'%{\e[38;2;198;120;221m%~'
PROMPT+=$'%{\e[38;2;224;108;117m]'
PROMPT+=$'%{\e[38;2;224;108;117m$:'
PROMPT+=$'%b%{$reset_color'
and i am getting colors i want but if i enter a long command like
cd Desktop
i am getting this:
cd Desktopkali)-[~]$:cd
this is that i want:
(enes-can@kali)-[~]$:cd Desktop
How can i fix this.