You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried changing the colour of the git part and I could change the text colour but not the logo colour.
`function my_git_formatter() {
emulate -L zsh
if [[ -n $P9K_CONTENT ]]; then
# If P9K_CONTENT is not empty, use it. It's either "loading" or from vcs_info (not from
# gitstatus plugin). VCS_STATUS_* parameters are not available in this case.
typeset -g my_git_format=$P9K_CONTENT
return
fi
# Styling for different parts of Git status.
local meta='%b%F{221}' # white foreground
local clean='%b%F{221}' # black foreground
local modified='%b%F{221}' # black foreground
local untracked='%b%F{221}' # black foreground
local conflicted='%b%F{221}' # red foreground`
Also in the provided example file the line local meta='%b%F{221}' # white foreground
was local meta='%7F' # white foreground
originally and I didn't know why this colour was different than the others.
I just typed typeset -g into the console and it spat out a lot of text from which I copied the %b%F{221} part
Here's an image of what I mean
The text was updated successfully, but these errors were encountered:
local meta='%b%F{221}'# white foregroundlocal clean='%b%F{221}'# black foregroundlocal modified='%b%F{221}'# black foregroundlocal untracked='%b%F{221}'# black foregroundlocal conflicted='%b%F{221}'# red foreground
I tried changing the colour of the git part and I could change the text colour but not the logo colour.
`function my_git_formatter() {
emulate -L zsh
Also in the provided example file the line
local meta='%b%F{221}' # white foreground
was
local meta='%7F' # white foreground
originally and I didn't know why this colour was different than the others.
I just typed
typeset -g
into the console and it spat out a lot of text from which I copied the%b%F{221}
partHere's an image of what I mean
The text was updated successfully, but these errors were encountered: