diff --git a/src/init/omp.bash b/src/init/omp.bash index 2e47f30d..59381024 100644 --- a/src/init/omp.bash +++ b/src/init/omp.bash @@ -1,5 +1,6 @@ export POSH_THEME=::CONFIG:: export POWERLINE_COMMAND="oh-my-posh" +export CONDA_PROMPT_MODIFIER=false TIMER_START="/tmp/${USER}.start.$$" diff --git a/src/init/omp.fish b/src/init/omp.fish index 0464c2df..7f9088fc 100644 --- a/src/init/omp.fish +++ b/src/init/omp.fish @@ -1,5 +1,6 @@ set -g posh_theme ::CONFIG:: set -g POWERLINE_COMMAND "oh-my-posh" +set -g CONDA_PROMPT_MODIFIER false function fish_prompt set -l omp_stack_count (count $dirstack) diff --git a/src/init/omp.ps1 b/src/init/omp.ps1 index be26d297..9a54d5de 100644 --- a/src/init/omp.ps1 +++ b/src/init/omp.ps1 @@ -2,6 +2,7 @@ # that pop up when we don't [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding $env:POWERLINE_COMMAND = "oh-my-posh" +$env:CONDA_PROMPT_MODIFIER = $false $global:PoshSettings = New-Object -TypeName PSObject -Property @{ Theme = ""; diff --git a/src/init/omp.zsh b/src/init/omp.zsh index d3073dc5..5126b15c 100644 --- a/src/init/omp.zsh +++ b/src/init/omp.zsh @@ -1,5 +1,6 @@ export POSH_THEME=::CONFIG:: export POWERLINE_COMMAND="oh-my-posh" +export CONDA_PROMPT_MODIFIER=false function omp_preexec() { omp_start_time=$(::OMP:: --millis)