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
There is a conflict between oh-my-posh and z.lua.
When oh-my-posh is running z.lua stops updating it's database.
I have no idea what is going on there, but I found an issue opened on oh-my-posh github: JanDeDobbeleer/oh-my-posh#2105
I discovered that if I manually change default value of _ZL_CLINK_PROMPT_PRIORITY from 99 to 0 in z.lua file then it starts working.
Like that:
local _zl_clink_prompt_priority = os.environ("_ZL_CLINK_PROMPT_PRIORITY", 0)
The text was updated successfully, but these errors were encountered:
maybe you put the z.lua init command before oh-my-posh in your profile.
I encountered the same problem, but after I adjusted the order of initialization and initialized omp first, z.lua and its database worked normally.
There is a conflict between oh-my-posh and z.lua.
When oh-my-posh is running z.lua stops updating it's database.
I have no idea what is going on there, but I found an issue opened on oh-my-posh github:
JanDeDobbeleer/oh-my-posh#2105
I discovered that if I manually change default value of _ZL_CLINK_PROMPT_PRIORITY from 99 to 0 in z.lua file then it starts working.
Like that:
local _zl_clink_prompt_priority = os.environ("_ZL_CLINK_PROMPT_PRIORITY", 0)
The text was updated successfully, but these errors were encountered: