Roman Perepelitsa
Roman Perepelitsa
It's configurable in p10k. Here's the parameter's default value: ```zsh typeset -g POWERLEVEL9K_VIRTUALENV_GENERIC_NAMES=(virtualenv venv .venv env) ```
@spencerwooo This is a perfect use case for named directories. First, put this in your `~/.zshrc`. ```zsh hash -d w=/mnt/c/Users/spenc ``` (You can use any name instead of `w`. I...
`POWERLEVEL9K_RPROMPT_ON_NEWLINE=false` is the default, so it won't do anything if you set it explicitly. The problem is that `POWERLEVEL9K_RPROMPT_ON_NEWLINE` is ignored unless `POWERLEVEL9K_PROMPT_ON_NEWLINE` is set to `true`. However, the latter...
I'm not a powerlevel9k dev (nor a user), so I wouldn't know what the plans are. There is [not much activity](https://github.com/Powerlevel9k/powerlevel9k/graphs/commit-activity) right now, so I wouldn't bet on this issue...
> Seems like this is a known bug and #843 will fix this, if merged. Yep. It cannot be merged into `master` though, for it'll break the majority of p9k...
@leodido99 If you are still using Powerlevel9k, could you check if this issues can be reproduced with [Powerlevel10k](https://github.com/romkatv/powerlevel10k/#for-powerlevel9k-users)?
> I set the font to `"terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome+Regular',",` in `vscode's settings.json`. You need to remove that trailing comma from `fontFamily`. ```diff - "terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome+Regular',", + "terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome+Regular'", ```
It's also possible that you need to replace one `+` with space. ``` "terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome Regular'", ```
> There is still one more issue. Repeating the command in the output line. Why is that? I don't see anything about repeating the command in the output line in...
Indeed, that looks pretty bad. Your iTerm also looks kinda broken. By the way, you are using the original Powerlevel9k, right?