export-env{$env.POWERLINE_COMMAND='oh-my-posh'$env.POSH_THEME="~/.config/oh-my-posh/config.json"$env.PROMPT_INDICATOR=""$env.POSH_PID=(randomuuid)# By default displays the right prompt on the first line
# making it annoying when you have a multiline prompt
# making the behavior different compared to other shells
$env.PROMPT_COMMAND_RIGHT={''}$env.NU_VERSION=(version|getversion)# PROMPTS
$env.PROMPT_MULTILINE_INDICATOR=(^oh-my-poshprintsecondary$"--config=($env.POSH_THEME)"--shell=nu$"--shell-version=($env.NU_VERSION)")$env.PROMPT_COMMAND={# We have to do this because the initial value of `$env.CMD_DURATION_MS` is always `0823`,
# which is an official setting.
# See https://github.com/nushell/nushell/discussions/6402#discussioncomment-3466687.
letcmd_duration=if$env.CMD_DURATION_MS=="0823"{0}else{$env.CMD_DURATION_MS}letwidth=((termsize).columns|intostring)^oh-my-poshprintprimary$"--config=($env.POSH_THEME)"--shell=nu$"--shell-version=($env.NU_VERSION)"$"--execution-time=($cmd_duration)"$"--error=($env.LAST_EXIT_CODE)"$"--terminal-width=($width)"}}