Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't configure p10k using oh my zsh : zsh: command not found: p10k

I wanted to install the p10k theme in my terminal but I get an error.

➜  ~ p10k configure
zsh: command not found: p10k

I have no clue on what the issue is.
Thanks for your time :),
Hukyfi

like image 904
Hukify Avatar asked Sep 03 '25 15:09

Hukify


1 Answers

Install Powerlevel10k manually.

git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc

This method of installation won't make anything slower or otherwise sub-par.

powerlevel10k manual

like image 168
Jhon Carlos Acevedo Mendoza Avatar answered Sep 05 '25 16:09

Jhon Carlos Acevedo Mendoza