-
|
how can i install powerlevel10k theme with oh my zsh with set powerlevel10k as theme, coping the .p10k.zsh file wont do the trick |
Beta Was this translation helpful? Give feedback.
Answered by
luxonauta
Dec 5, 2025
Replies: 1 comment
-
|
Just copying the
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
ZSH_THEME="powerlevel10k/powerlevel10k"
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
source ~/.zshrcNow your If you want to reconfigure it later, just run: p10k configure |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
luxonauta
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just copying the
.p10k.zshfile won't work on its own. Here's the proper installation:git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k~/.zshrc:ZSH_THEME="powerlevel10k/powerlevel10k".p10k.zshconfig at the end of your~/.zshrc:Now your
.p10k.zshconfiguration will actually be used. The key is that you need both the theme installed in the Oh My Zsh themes directory AND the config file sourced in your.zshrc.If you want to reconfigure…