1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2026-03-09 18:54:47 +01:00

Compare commits

..

3 Commits

Author SHA1 Message Date
be879e53a9 nvim: updated dictionaries 2026-02-17 07:45:20 +01:00
9544ecdfac profile: make pyenv fail safely withouth stopping graphical interface completely 2026-02-17 07:44:15 +01:00
59f74aeadf nvim: updated dictionaries 2026-02-17 07:43:12 +01:00
2 changed files with 12 additions and 2 deletions

View File

@@ -54,6 +54,7 @@ Ikigai
Int Int
Ira Ira
Jeanine Jeanine
Karamasov
Kratom Kratom
Kubitschek Kubitschek
Käte Käte
@@ -67,6 +68,7 @@ Marten
Mathis Mathis
Matvey Matvey
Mauli Mauli
Mentos
MiiMii MiiMii
Mint Mint
Nate Nate
@@ -79,6 +81,7 @@ OpenCloud
Overwatch Overwatch
Pane Pane
Papis Papis
Pauper
PfingstAka PfingstAka
Pluribus Pluribus
PopOS PopOS
@@ -87,6 +90,7 @@ Precons
PyEnv PyEnv
Reeves Reeves
Ruschenbaum Ruschenbaum
SPM
Sagehorn Sagehorn
Sedef Sedef
Severance Severance

View File

@@ -72,9 +72,15 @@ export VIPER_BOOGIE="$HOME/.dotnet/tools/boogie"
# python # python
export PYENV_ROOT="$HOME/.pyenv" export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init --path)" if [ -d "$PYENV_ROOT" ] && [ -x "PYENV_ROOT/bin/pyenv" ]; then
export PATH="$PYENV_ROOT/bin:$PATH"
if command -v timeout >/DEV/NULL 2>&1; then
timeout 2s -c sh -c 'eval "$($PYENV_ROOT/bin/pyenv init --path)"' 2>/dev/null
else
eval "$($PYENV_ROOT/bin/pyenv init --path 2>/dev/null)" || true
fi
fi
# less/man colors # less/man colors
export LESS=-R export LESS=-R