Roman Perepelitsa
Roman Perepelitsa
See https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#why-does-powerlevel10k-spawn-extra-processes
Oh-my-zsh installer replaces your .zshrc with something else. I believe it makes a backup of the original file somewhere.
What's the minimal `.zshrc` that reproduces the problem?
See https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#why-does-git-status-sometimes-appear-grey-and-then-gets-colored-after-a-short-period-of-time
What is the output of `typeset -p POWERLEVEL9K_MODE` in your shell? What happens if you run `p10k configure` all the way to the end and again run `typeset -p POWERLEVEL9K_MODE`?
The PR addresses several issues. Would it be possible to isolate *one*, which appears the most like a bug? For example, the description of the issue might look as follows....
https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#horrific-mess-when-resizing-terminal-window
There is no `POWERLEVEL9K_VCS_BRANCH_FOREGROUND` parameter. The rest do exist. If you want full control over the format of `vcs`, run `p10k configure` and choose Lean style. Then edit `my_git_formatter` in...
For the first proble, see https://github.com/romkatv/zsh4humans/blob/master/tips.md#current-directory For the second problem, try something like this: https://github.com/maximbaz/dotfiles/blob/cafb7a9f773fc8297b97f64fefe1c97b2efb58f0/modules/common/zsh/.zshrc#L10
Yes, it's possible. Try invoking `find` with the arguments from above: ```zsh find '(' -name '.git' -o -name 'node_modules' -o -name '.direnv' ')' -prune -print -o -print ``` That's what...