Skip to content

Commit

Permalink
fix: set conda env var
Browse files Browse the repository at this point in the history
relates to #133
  • Loading branch information
JanDeDobbeleer committed May 20, 2021
1 parent 7a85ee3 commit 676da9e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions 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.$$"

Expand Down
1 change: 1 addition & 0 deletions 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)
Expand Down
1 change: 1 addition & 0 deletions src/init/omp.ps1
Expand Up @@ -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 = "";
Expand Down
1 change: 1 addition & 0 deletions 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)
Expand Down

0 comments on commit 676da9e

Please sign in to comment.