Roman Perepelitsa

Results 638 comments of Roman Perepelitsa

That's interesting. You don't need to modify .zshrc after running `brew install bfs`.

It's not p10k doing it. See https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#which-aspects-of-shell-and-terminal-does-powerlevel10k-affect. Probably https://github.com/zsh-users/zsh-syntax-highlighting, so look there. P.S. The highlighting is a good feature. Learn what it means and keep it on. Or just keep...

You can implement it as a custom prompt segment. Type `p10k help segment` to see the docs and search for "prompt_example" in `~/.p10k.zsh`.

I see on your screenshot that you've figured out how to edit the file in vscode. That's a reasonable text editor. `open`, on the other hand, is not a text...

You can override icons by editing `~/.p10k.zsh`. There is a virtually uncountable number of customizations that are available.

Thanks, Ihor. You can remove username@host by commenting out `context` within `POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS` in `~/.p10k.zsh`.

Probably a bug in the terminal, or perhaps in the window manager.

Could you verify that the issue isn't caused by something else loaded your zsh startup files? To do that, replace your `.zshrc` with this: ```zsh if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]];...

My favorite recipe for quick-n-dirty benchmarks: ```zsh time ( repeat 100000 (( $+commands[who] )) ) ``` Adjust the repeat count to get the total run time of at least 100ms.

The same way as in plain zsh. zsh4humans doesn't do anything special w.r.t. `kill` completions.